Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ui/viewbinder/
DActivatableNotificationViewBinder.kt27 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView in <lambda>()
37 view: ActivatableNotificationView, in <lambda>()
54 private suspend fun ActivatableNotificationView.registerListenersWhileAttached( in <lambda>()
68 private val view: ActivatableNotificationView,
86 if (!falseTap && v is ActivatableNotificationView) { in onTouch()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/dagger/
DActivatableNotificationViewModule.java19 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
33 ExpandableView bindExpandableView(ActivatableNotificationView view); in bindExpandableView()
36 ExpandableOutlineView bindExpandableOutlineView(ActivatableNotificationView view); in bindExpandableOutlineView()
DNotificationRowComponent.java19 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
37 Builder activatableNotificationView(ActivatableNotificationView view); in activatableNotificationView()
DNotificationShelfComponent.java21 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
59 abstract ActivatableNotificationView bindNotificationShelf(NotificationShelf view); in bindNotificationShelf()
DExpandableNotificationRowComponent.java25 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
78 abstract ActivatableNotificationView bindExpandableView(ExpandableNotificationRow view); in bindExpandableView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
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()
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()
DExpandableNotificationRow.java133 public class ExpandableNotificationRow extends ActivatableNotificationView
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DActivatableNotificationViewTest.kt41 private lateinit var mView: ActivatableNotificationView
48 mView = object : ActivatableNotificationView(mContext, null) { in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
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,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java112 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
467 if (!(view instanceof ActivatableNotificationView)) {
470 ActivatableNotificationView row = (ActivatableNotificationView) view;
DStackScrollAlgorithm.java36 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
909 if (child instanceof ActivatableNotificationView in updateZValuesForState()
DNotificationStackScrollLayout.java111 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
784 if (child instanceof ActivatableNotificationView) { in updateBgColor()
785 ((ActivatableNotificationView) child).updateBackgroundColors(); in updateBgColor()