Home
last modified time | relevance | path

Searched refs:smartReplyView (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DInflatedSmartReplies.java58 @Nullable SmartReplyView smartReplyView, in InflatedSmartReplies()
61 mSmartReplyView = smartReplyView; in InflatedSmartReplies()
102 SmartReplyView smartReplyView = SmartReplyView.inflate(context); in inflate() local
106 suggestionButtons.addAll(smartReplyView.inflateRepliesFromRemoteInput( in inflate()
112 smartReplyView.inflateSmartActions(packageContext, in inflate()
117 return new InflatedSmartReplies(smartReplyView, suggestionButtons, in inflate()
DSmartReplyView.java266 static Button inflateReplyButton(SmartReplyView smartReplyView, Context context, in inflateReplyButton() argument
270 R.layout.smart_reply_button, smartReplyView, false); in inflateReplyButton()
275 if (smartReplyView.mConstants.getEffectiveEditChoicesBeforeSending( in inflateReplyButton()
279 smartReplyView.mRemoteInputManager.activateRemoteInput(b, in inflateReplyButton()
304 smartReplyView.mSmartReplyContainer.setVisibility(View.GONE); in inflateReplyButton()
309 smartReplyView.mKeyguardDismissUtil.executeWhenUnlocked(action, !entry.isRowPinned()); in inflateReplyButton()
312 smartReplyView.mConstants.getOnClickInitDelay()); in inflateReplyButton()
319 String label = smartReplyView.getResources().getString( in inflateReplyButton()
325 SmartReplyView.setButtonColors(b, smartReplyView.mCurrentBackgroundColor, in inflateReplyButton()
326 smartReplyView.mDefaultStrokeColor, smartReplyView.mDefaultTextColor, in inflateReplyButton()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java1336 SmartReplyView smartReplyView = null;
1346 smartReplyView = inflatedSmartReplyView.getSmartReplyView();
1347 smartReplyContainer.addView(smartReplyView);
1349 if (smartReplyView != null) {
1350 smartReplyView.resetSmartSuggestions(smartReplyContainer);
1351 smartReplyView.addPreInflatedButtons(
1354 smartReplyView.setBackgroundTintColor(entry.getRow().getCurrentBackgroundTint());
1357 return smartReplyView;