HomeSort by relevance Sort by last modified time
    Searched refs:notificationInfo (Results 1 - 5 of 5) sorted by null

  /packages/apps/Car/Messenger/src/com/android/car/messenger/
MapMessageMonitor.java 60 private final Map<SenderKey, NotificationInfo> mNotificationInfos = new HashMap<>();
93 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey);
94 if (notificationInfo == null) {
95 notificationInfo =
96 new NotificationInfo(message.getSenderName(), message.getSenderContactUri());
97 mNotificationInfos.put(senderKey, notificationInfo);
99 notificationInfo.mMessageKeys.add(messageKey);
100 updateNotificationFor(senderKey, notificationInfo, false /* ttsPlaying */);
104 NotificationInfo notificationInfo, boolean ttsPlaying)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupDataProvider.java 28 import com.android.launcher3.notification.NotificationInfo;
188 NotificationInfo notificationInfo = null;
197 notificationInfo = new NotificationInfo(mLauncher, activeNotifications[0]);
198 if (notificationInfo.shouldShowIconInBadge()) {
203 notificationInfo = null;
208 badgeInfo.setNotificationToShow(notificationInfo);
  /packages/apps/Launcher3/src/com/android/launcher3/badge/
BadgeInfo.java 27 import com.android.launcher3.notification.NotificationInfo;
46 * used to retrieve {@link NotificationInfo}'s.
57 private NotificationInfo mNotificationInfo;
113 public void setNotificationToShow(@Nullable NotificationInfo notificationInfo) {
114 mNotificationInfo = notificationInfo;
125 * The shader is cached until {@link #setNotificationToShow(NotificationInfo)} is called.
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationFooterLayout.java 53 void onIconAnimationEnd(NotificationInfo animatedNotification);
60 private final List<NotificationInfo> mNotifications = new ArrayList<>();
61 private final List<NotificationInfo> mOverflowNotifications = new ArrayList<>();
106 * Keep track of the NotificationInfo, and then update the UI when
109 public void addNotificationInfo(final NotificationInfo notificationInfo) {
111 mNotifications.add(notificationInfo);
113 mOverflowNotifications.add(notificationInfo);
118 * Adds icons and potentially overflow text for all of the NotificationInfo's
119 * added using {@link #addNotificationInfo(NotificationInfo)}
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
DefaultVoicemailNotifier.java 345 Pair<Uri, Integer> notificationInfo = getNotificationInfo(voicemail);
360 .setSound(notificationInfo.first)
361 .setDefaults(notificationInfo.second);

Completed in 736 milliseconds