Home | History | Annotate | Download | only in notification

Lines Matching refs:notificationInfo

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)}.
125 NotificationInfo info = mNotifications.get(i);
136 * Creates an icon for the given NotificationInfo, and adds it to the icon row.
139 private View addNotificationIconForInfo(NotificationInfo info) {
163 callback.onIconAnimationEnd((NotificationInfo) firstNotification.getTag());
175 NotificationInfo notification = mOverflowNotifications.remove(0);
196 mNotifications.remove((NotificationInfo) child.getTag());
220 Iterator<NotificationInfo> overflowIterator = mOverflowNotifications.iterator();
228 NotificationInfo childInfo = (NotificationInfo) child.getTag();