Searched refs:SmartReplyView (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | InflatedSmartReplies.java | 53 @Nullable private final SmartReplyView mSmartReplyView; 58 @Nullable SmartReplyView smartReplyView, in InflatedSmartReplies() 66 @Nullable public SmartReplyView getSmartReplyView() { in getSmartReplyView() 102 SmartReplyView smartReplyView = SmartReplyView.inflate(context); in inflate() 199 SmartReplyView.SmartReplies smartReplies = null; in chooseSmartRepliesAndActions() 200 SmartReplyView.SmartActions smartActions = null; in chooseSmartRepliesAndActions() 202 smartReplies = new SmartReplyView.SmartReplies( in chooseSmartRepliesAndActions() 209 smartActions = new SmartReplyView.SmartActions(appGeneratedSmartActions, in chooseSmartRepliesAndActions() 219 smartReplies = new SmartReplyView.SmartReplies( in chooseSmartRepliesAndActions() 237 smartActions = new SmartReplyView.SmartActions( in chooseSmartRepliesAndActions() [all …]
|
D | SmartReplyView.java | 54 public class SmartReplyView extends ViewGroup { class 120 public SmartReplyView(Context context, AttributeSet attrs) { in SmartReplyView() method in SmartReplyView 145 final TypedArray arr = context.obtainStyledAttributes(attrs, R.styleable.SmartReplyView, in SmartReplyView() 260 public static SmartReplyView inflate(Context context) { in inflate() 261 return (SmartReplyView) LayoutInflater.from(context).inflate( in inflate() 266 static Button inflateReplyButton(SmartReplyView smartReplyView, Context context, in inflateReplyButton() 325 SmartReplyView.setButtonColors(b, smartReplyView.mCurrentBackgroundColor, in inflateReplyButton() 332 static Button inflateActionButton(SmartReplyView smartReplyView, Context context, in inflateActionButton()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | SmartReplyViewTest.java | 90 private SmartReplyView mView; 120 mView = SmartReplyView.inflate(mContext); in setUp() 470 SmartReplyView.SmartReplies smartReplies = in inflateSmartReplies() 471 new SmartReplyView.SmartReplies(choices, input, pendingIntent, fromAssistant); in inflateSmartReplies() 498 new SmartReplyView.SmartActions(createActions(actionTitles), false), in setSmartActions() 519 new SmartReplyView.SmartActions(createActions(actionTitles), fromAssistant), in setSmartRepliesAndActions() 557 SmartReplyView.SmartReplies smartReplies = in buildExpectedView() 558 new SmartReplyView.SmartReplies(choices, null, null, false); in buildExpectedView() 560 Button current = SmartReplyView.inflateReplyButton(mView, mContext, i, smartReplies, in buildExpectedView() 611 assertTrue(((SmartReplyView.LayoutParams) view.getLayoutParams()).isShown()); in assertReplyButtonShown() [all …]
|
D | InflatedSmartRepliesTest.java | 46 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/ |
D | NotificationContentView.java | 56 import com.android.systemui.statusbar.policy.SmartReplyView; 89 private SmartReplyView mExpandedSmartReplyView; 90 private SmartReplyView mHeadsUpSmartReplyView; 1321 private SmartReplyView applySmartReplyView(View view, 1336 SmartReplyView smartReplyView = null; 1338 && smartReplyContainer.getChildAt(0) instanceof SmartReplyView) {
|