Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/
DCarHeadsUpNotificationManagerTest.java218 View notificationView = getNotificationView( in maybeShowHeadsUp_isNotImportant_returnsNull()
241 View notificationView = getNotificationView( in maybeShowHeadsUp_isImportanceHigh_returnsNotNull()
291 View notificationView = getNotificationView( in maybeShowHeadsUp_categoryCarInformation_returnsNull()
309 View notificationView = getNotificationView( in maybeShowHeadsUp_categoryMessage_returnsNotNull()
326 View notificationView = getNotificationView( in maybeShowHeadsUp_categoryCall_returnsNotNull()
343 View notificationView = getNotificationView( in maybeShowHeadsUp_categoryNavigation_returnsNotNull()
361 View notificationView = getNotificationView( in maybeShowHeadsUp_InboxHeadsUp_returnsNotNull()
386 View notificationView = getNotificationView( in maybeShowHeadsUp_isSignedWithPlatformKey_returnsNotNull()
411 View notificationView = getNotificationView( in maybeShowHeadsUp_isSystemApp_returnsNotNull()
443 View notificationView = getNotificationView( in maybeShowHeadsUp_nonMutedNotification_headsUpShown()
[all …]
DHeadsUpEntryTest.java103 assertThat(mHeadsUpEntry.getNotificationView()).isNull(); in setNotificationView_shouldSetNotificationView()
107 assertThat(mHeadsUpEntry.getNotificationView()).isNotNull(); in setNotificationView_shouldSetNotificationView()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarHeadsUpNotificationManager.java302 if (currentNotification.getNotificationView() == null) { in showHeadsUp()
306 mHunContainer.displayNotification(currentNotification.getNotificationView()); in showHeadsUp()
308 notificationTypeItem.getViewHolder(currentNotification.getNotificationView(), in showHeadsUp()
322 currentNotification.getNotificationView().getViewTreeObserver() in showHeadsUp()
328 currentNotification.getNotificationView().getViewTreeObserver().addOnGlobalLayoutListener( in showHeadsUp()
332 View view = currentNotification.getNotificationView(); in showHeadsUp()
350 View cardView = currentNotification.getNotificationView().findViewById(R.id.card_view); in showHeadsUp()
362 View cardView = currentNotification.getNotificationView().findViewById( in setInternalInsetsInfo()
439 View view = currentHeadsUpNotification.getNotificationView(); in animateOutHUN()
479 mHunContainer.removeNotification(currentHeadsUpNotification.getNotificationView()); in resetView()
DHeadsUpEntry.java62 View getNotificationView() { in getNotificationView() method in HeadsUpEntry