Searched refs:SmartReplyView (Results 1 – 7 of 7) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | InflatedSmartReplyState.kt | 19 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions 20 import com.android.systemui.statusbar.policy.SmartReplyView.SmartReplies
|
H A D | SmartReplyStateInflater.kt | 56 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions 57 import com.android.systemui.statusbar.policy.SmartReplyView.SmartButtonType 58 import com.android.systemui.statusbar.policy.SmartReplyView.SmartReplies 144 val smartReplyView = SmartReplyView.inflate(sysuiContext, constants) 384 (layoutParams as SmartReplyView.LayoutParams).mButtonType = SmartButtonType.ACTION 409 parent: SmartReplyView, 427 parent: SmartReplyView, 465 (layoutParams as SmartReplyView.LayoutParams).mButtonType = SmartButtonType.REPLY 472 smartReplyView: SmartReplyView,
|
H A D | InflatedSmartReplyViewHolder.kt | 25 val smartReplyView: SmartReplyView?,
|
H A D | SmartReplyView.java | 45 public class SmartReplyView extends ViewGroup { class 104 public SmartReplyView(Context context, AttributeSet attrs) { in SmartReplyView() method in SmartReplyView 123 final TypedArray arr = context.obtainStyledAttributes(attrs, R.styleable.SmartReplyView, in SmartReplyView() 148 public static SmartReplyView inflate(Context context, SmartReplyConstants constants) { in inflate() 149 SmartReplyView view = (SmartReplyView) LayoutInflater.from(context).inflate( in inflate()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | SmartReplyViewTest.java | 100 private SmartReplyView mView; 146 mView = SmartReplyView.inflate(mContext, mConstants); in setUp() 522 private SmartReplyView.SmartReplies createSmartReplies(CharSequence[] choices, in createSmartReplies() 529 return new SmartReplyView.SmartReplies( in createSmartReplies() 562 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions( in setSmartActions() 590 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions( in setSmartRepliesAndActions() 624 SmartReplyView.SmartReplies smartReplies = in buildExpectedView() 647 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions(actions, false); in buildExpectedView() 686 assertTrue(((SmartReplyView.LayoutParams) view.getLayoutParams()).isShown()); in assertReplyButtonShown() 690 assertFalse(((SmartReplyView.LayoutParams) view.getLayoutParams()).isShown()); in assertReplyButtonHidden() [all …]
|
H A D | InflatedSmartRepliesTest.java | 49 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions; 50 import com.android.systemui.statusbar.policy.SmartReplyView.SmartReplies;
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationContentView.java | 67 import com.android.systemui.statusbar.policy.SmartReplyView; 109 private SmartReplyView mExpandedSmartReplyView; 110 private SmartReplyView mHeadsUpSmartReplyView; 1507 SmartReplyView.SmartReplies smartReplies = 1509 SmartReplyView.SmartActions smartActions = 1564 private static SmartReplyView applySmartReplyView(View view, 1584 if (child.getId() == R.id.smart_reply_view && child instanceof SmartReplyView) { 1594 SmartReplyView smartReplyView = null;
|