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.java74 private CarNotificationView mCarNotificationView; field in CarNotificationViewTest
100 mCarNotificationView = frameLayout.findViewById(R.id.notification_view); in setup()
101 mCarNotificationView.setClickHandlerFactory(mClickHandlerFactory); in setup()
106 mCarNotificationView.onAttachedToWindow(); in onClickClearAllButton_callsFactoryClearNotificationsWithDismissibleNotifications()
107 Button clearAllButton = mCarNotificationView.findViewById(R.id.clear_all_button); in onClickClearAllButton_callsFactoryClearNotificationsWithDismissibleNotifications()
113 mCarNotificationView.setNotifications(notifications); in onClickClearAllButton_callsFactoryClearNotificationsWithDismissibleNotifications()
124 mCarNotificationView.onAttachedToWindow(); in onClickManageButton_actionNotificationSettings()
125 Button manageButton = mCarNotificationView.findViewById(R.id.manage_button); in onClickManageButton_actionNotificationSettings()
136 mCarNotificationView.onAttachedToWindow(); in onClickManageButton_categoryDefault()
137 Button manageButton = mCarNotificationView.findViewById(R.id.manage_button); in onClickManageButton_categoryDefault()
[all …]
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationViewController.java20 private final CarNotificationView mCarNotificationView; field in NotificationViewController
35 mCarNotificationView = carNotificationView; in NotificationViewController()
40 mShowRecentsAndOlderHeaders = mCarNotificationView.getContext() in NotificationViewController()
46 View view = mCarNotificationView.findViewById(R.id.notification_center_title); in NotificationViewController()
68 mUxResitrictionListener.setCarNotificationView(mCarNotificationView); in enable()
72 mCarNotificationView.onUxRestrictionsChanged(currentRestrictions); in enable()
95 mCarNotificationView.resetState(); in onVisibilityChanged()
124 mCarNotificationView.setNotifications(notificationGroups); in resetNotifications()
146 mCarNotificationView.removeNotification(alertEntry); in updateNotifications()
152 mCarNotificationView.setNotifications(notificationGroups); 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.java40 private CarNotificationView mCarNotificationView; field in CarNotificationCenterActivity
52 new NotificationViewController(mCarNotificationView,
65 mCarNotificationView.setVisibleNotificationsAsSeen();
85 mCarNotificationView = findViewById(R.id.notification_view); in onCreate()
86 mCarNotificationView.setClickHandlerFactory(app.getClickHandlerFactory()); in onCreate()