Home
last modified time | relevance | path

Searched refs:ActivatableNotificationView (Results 1 – 13 of 13) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ui/viewbinder/
H A DActivatableNotificationViewBinder.kt27 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView
37 view: ActivatableNotificationView,
54 private suspend fun ActivatableNotificationView.registerListenersWhileAttached(
68 private val view: ActivatableNotificationView,
86 if (!falseTap && v is ActivatableNotificationView) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DActivatableNotificationViewController.java33 extends ViewController<ActivatableNotificationView> {
40 public ActivatableNotificationViewController(ActivatableNotificationView view, in ActivatableNotificationViewController()
84 if (!falseTap && v instanceof ActivatableNotificationView) { in onTouch()
85 ((ActivatableNotificationView) v).onTap(); in onTouch()
H A DActivatableNotificationView.java56 public abstract class ActivatableNotificationView extends ExpandableOutlineView { class
114 public ActivatableNotificationView(Context context, AttributeSet attrs) { in ActivatableNotificationView() method in ActivatableNotificationView
455 .withView(getCujType(isAppearing), ActivatableNotificationView.this); in startAppearAnimation()
H A DExpandableNotificationRow.java133 public class ExpandableNotificationRow extends ActivatableNotificationView
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/dagger/
H A DActivatableNotificationViewModule.java19 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
33 ExpandableView bindExpandableView(ActivatableNotificationView view); in bindExpandableView()
36 ExpandableOutlineView bindExpandableOutlineView(ActivatableNotificationView view); in bindExpandableOutlineView()
H A DNotificationRowComponent.java19 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
37 Builder activatableNotificationView(ActivatableNotificationView view); in activatableNotificationView()
H A DNotificationShelfComponent.java21 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
59 abstract ActivatableNotificationView bindNotificationShelf(NotificationShelf view); in bindNotificationShelf()
H A DExpandableNotificationRowComponent.java25 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
78 abstract ActivatableNotificationView bindExpandableView(ExpandableNotificationRow view); in bindExpandableView()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DActivatableNotificationViewTest.kt41 private lateinit var mView: ActivatableNotificationView
48 mView = object : ActivatableNotificationView(mContext, null) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java48 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
68 public class NotificationShelf extends ActivatableNotificationView implements StateListener {
461 if (child instanceof ActivatableNotificationView) { in updateAppearance()
462 ActivatableNotificationView anv = (ActivatableNotificationView) child; in updateAppearance()
534 ActivatableNotificationView anv,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java112 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
467 if (!(view instanceof ActivatableNotificationView)) {
470 ActivatableNotificationView row = (ActivatableNotificationView) view;
H A DStackScrollAlgorithm.java36 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
909 if (child instanceof ActivatableNotificationView in updateZValuesForState()
H A DNotificationStackScrollLayout.java111 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
784 if (child instanceof ActivatableNotificationView) { in updateBgColor()
785 ((ActivatableNotificationView) child).updateBackgroundColors(); in updateBgColor()