Home
last modified time | relevance | path

Searched refs:SmartReplyView (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DInflatedSmartReplies.java53 @Nullable private final SmartReplyView mSmartReplyView;
58 @Nullable SmartReplyView smartReplyView, in InflatedSmartReplies()
66 @Nullable public SmartReplyView getSmartReplyView() { in getSmartReplyView()
101 SmartReplyView smartReplyView = SmartReplyView.inflate(context); in inflate()
198 SmartReplyView.SmartReplies smartReplies = null; in chooseSmartRepliesAndActions()
199 SmartReplyView.SmartActions smartActions = null; in chooseSmartRepliesAndActions()
201 smartReplies = new SmartReplyView.SmartReplies( in chooseSmartRepliesAndActions()
208 smartActions = new SmartReplyView.SmartActions(appGeneratedSmartActions, in chooseSmartRepliesAndActions()
218 smartReplies = new SmartReplyView.SmartReplies( in chooseSmartRepliesAndActions()
236 smartActions = new SmartReplyView.SmartActions( in chooseSmartRepliesAndActions()
[all …]
DSmartReplyView.java53 public class SmartReplyView extends ViewGroup { class
119 public SmartReplyView(Context context, AttributeSet attrs) { in SmartReplyView() method in SmartReplyView
144 final TypedArray arr = context.obtainStyledAttributes(attrs, R.styleable.SmartReplyView, in SmartReplyView()
257 public static SmartReplyView inflate(Context context) { in inflate()
258 return (SmartReplyView) LayoutInflater.from(context).inflate( in inflate()
263 static Button inflateReplyButton(SmartReplyView smartReplyView, Context context, in inflateReplyButton()
322 SmartReplyView.setButtonColors(b, smartReplyView.mCurrentBackgroundColor, in inflateReplyButton()
329 static Button inflateActionButton(SmartReplyView smartReplyView, Context context, in inflateActionButton()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DSmartReplyViewTest.java90 private SmartReplyView mView;
118 mView = SmartReplyView.inflate(mContext); in setUp()
466 SmartReplyView.SmartReplies smartReplies = in inflateSmartReplies()
467 new SmartReplyView.SmartReplies(choices, input, pendingIntent, fromAssistant); in inflateSmartReplies()
493 new SmartReplyView.SmartActions(createActions(actionTitles), false), in setSmartActions()
513 new SmartReplyView.SmartActions(createActions(actionTitles), fromAssistant), in setSmartRepliesAndActions()
551 SmartReplyView.SmartReplies smartReplies = in buildExpectedView()
552 new SmartReplyView.SmartReplies(choices, null, null, false); in buildExpectedView()
554 Button current = SmartReplyView.inflateReplyButton(mView, mContext, i, smartReplies, in buildExpectedView()
605 assertTrue(((SmartReplyView.LayoutParams) view.getLayoutParams()).isShown()); in assertReplyButtonShown()
[all …]
DInflatedSmartRepliesTest.java46 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions;
47 import com.android.systemui.statusbar.policy.SmartReplyView.SmartReplies;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java56 import com.android.systemui.statusbar.policy.SmartReplyView;
91 private SmartReplyView mExpandedSmartReplyView;
92 private SmartReplyView mHeadsUpSmartReplyView;
1415 private SmartReplyView applySmartReplyView(View view,
1430 SmartReplyView smartReplyView = null;
1432 && smartReplyContainer.getChildAt(0) instanceof SmartReplyView) {