Home
last modified time | relevance | path

Searched refs:mCarNotificationView (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DCarNotificationViewTest.java68 private CarNotificationView mCarNotificationView; field in CarNotificationViewTest
94 mCarNotificationView = frameLayout.findViewById(R.id.notification_view); in setup()
95 mCarNotificationView.setClickHandlerFactory(mClickHandlerFactory); in setup()
100 Button clearAllButton = mCarNotificationView.findViewById(R.id.clear_all_button); in onClickClearAllButton_callsFactoryClearNotificationsWithDismissibleNotifications()
108 mCarNotificationView.setNotifications(notifications); in onClickClearAllButton_callsFactoryClearNotificationsWithDismissibleNotifications()
119 Button manageButton = mCarNotificationView.findViewById(R.id.manage_button); in onClickManageButton_actionNotificationSettings()
130 Button manageButton = mCarNotificationView.findViewById(R.id.manage_button); in onClickManageButton_categoryDefault()
141 Button manageButton = mCarNotificationView.findViewById(R.id.manage_button); in onClickManageButton_flagsNewTaskAndMultipleTask()
161 mCarNotificationView.setNotifications(notifications); in setNotifications_notEmpty_listViewIsVisible()
163 assertThat(mCarNotificationView.findViewById(R.id.notifications).getVisibility()) in setNotifications_notEmpty_listViewIsVisible()
[all …]
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationViewController.java21 private final CarNotificationView mCarNotificationView; field in NotificationViewController
35 mCarNotificationView = carNotificationView; in NotificationViewController()
44 View view = mCarNotificationView.findViewById(R.id.notification_center_title); in NotificationViewController()
66 mUxResitrictionListener.setCarNotificationView(mCarNotificationView); in enable()
70 mCarNotificationView.onUxRestrictionsChanged(currentRestrictions); in enable()
92 mCarNotificationView.resetState(); in onVisibilityChanged()
115 mCarNotificationView.setNotifications(notificationGroups); in resetNotifications()
131 mCarNotificationView.setNotifications( in updateNotifications()
DCarUxRestrictionManagerWrapper.java37 private CarNotificationView mCarNotificationView; field in CarUxRestrictionManagerWrapper
55 if (mCarNotificationView != null) { in onUxRestrictionsChanged()
56 mCarNotificationView.onUxRestrictionsChanged(restrictionInfo); in onUxRestrictionsChanged()
66 mCarNotificationView = carNotificationView; in setCarNotificationView()
DCarNotificationCenterActivity.java37 private CarNotificationView mCarNotificationView; field in CarNotificationCenterActivity
46 new NotificationViewController(mCarNotificationView,
71 mCarNotificationView = findViewById(R.id.notification_view); in onCreate()
72 mCarNotificationView.setClickHandlerFactory(app.getClickHandlerFactory()); in onCreate()