Searched refs:NotificationInfo (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/notification/
H A DNotificationFooterLayout.java53 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) {
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 inf
[all...]
H A DNotificationMainView.java46 private NotificationInfo mNotificationInfo;
81 public void applyNotificationInfo(NotificationInfo mainNotification, View iconView) {
92 public void applyNotificationInfo(NotificationInfo mainNotification, View iconView,
119 public NotificationInfo getNotificationInfo() {
H A DNotificationInfo.java44 public class NotificationInfo implements View.OnClickListener { class in inherits:View.OnClickListener
62 public NotificationInfo(Context context, StatusBarNotification statusBarNotification) { method in class:NotificationInfo
H A DNotificationItemView.java165 public void applyNotificationInfos(final List<NotificationInfo> notificationInfos) {
170 NotificationInfo mainNotification = notificationInfos.get(0);
191 public void onIconAnimationEnd(NotificationInfo newMainNotification) {
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java35 import com.android.calendar.alerts.AlertService.NotificationInfo;
710 private NotificationInfo createNotificationInfo(long eventId) {
711 return new NotificationInfo("eventName", "location", "description", 100L, 200L, eventId,
736 ArrayList<NotificationInfo> highPriority = new ArrayList<NotificationInfo>();
737 ArrayList<NotificationInfo> mediumPriority = new ArrayList<NotificationInfo>();
738 ArrayList<NotificationInfo> lowPriority = new ArrayList<NotificationInfo>();
763 ArrayList<NotificationInfo> highPriorit
[all...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertService.java315 ArrayList<NotificationInfo> highPriorityEvents = new ArrayList<NotificationInfo>();
316 ArrayList<NotificationInfo> mediumPriorityEvents = new ArrayList<NotificationInfo>();
317 ArrayList<NotificationInfo> lowPriorityEvents = new ArrayList<NotificationInfo>();
341 NotificationInfo info = highPriorityEvents.get(i);
358 NotificationInfo info = mediumPriorityEvents.get(i);
377 NotificationInfo info = lowPriorityEvents.get(0);
445 static void redistributeBuckets(ArrayList<NotificationInfo> highPriorityEvent
907 static class NotificationInfo { class in class:AlertService
917 NotificationInfo(String eventName, String location, String description, long startMillis, method in class:AlertService.NotificationInfo
[all...]
H A DAlertReceiver.java449 ArrayList<AlertService.NotificationInfo> notificationInfos, String digestTitle,
500 for (AlertService.NotificationInfo info : notificationInfos) {
573 for (AlertService.NotificationInfo info : notificationInfos) {
/packages/apps/Launcher3/src/com/android/launcher3/badge/
H A DBadgeInfo.java27 import com.android.launcher3.notification.NotificationInfo;
46 * used to retrieve {@link NotificationInfo}'s.
57 private NotificationInfo mNotificationInfo;
113 public void setNotificationToShow(@Nullable NotificationInfo notificationInfo) {
125 * The shader is cached until {@link #setNotificationToShow(NotificationInfo)} is called.
/packages/apps/Dialer/java/com/android/incallui/
H A DExternalCallNotifier.java68 private Map<Call, NotificationInfo> mNotifications = new ArrayMap<>();
91 NotificationInfo info = new NotificationInfo(call, mNextUniqueNotificationId++);
130 for (NotificationInfo info : mNotifications.values()) {
143 private void showNotifcation(final NotificationInfo info) {
214 private void savePhoto(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
227 private void saveContactInfo(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
233 /** Rebuild an existing or show a new notification given {@link NotificationInfo}. */
234 private void postNotification(NotificationInfo info) {
433 private static class NotificationInfo { class in class:ExternalCallNotifier
441 public NotificationInfo(@NonNull Call call, int notificationId) { method in class:ExternalCallNotifier.NotificationInfo
[all...]
/packages/apps/Car/Messenger/src/com/android/car/messenger/
H A DMapMessageMonitor.java93 private final Map<SenderKey, NotificationInfo> mNotificationInfos = new HashMap<>();
140 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey);
143 new NotificationInfo(message.getSenderName(), message.getSenderContactUri());
184 private void updateNotificationFor(SenderKey senderKey, NotificationInfo notificationInfo) {
261 private Intent getPlayMessageIntent(SenderKey senderKey, NotificationInfo notificationInfo) {
283 NotificationInfo notificationInfo) {
320 NotificationInfo notificationInfo) {
336 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey);
385 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey);
400 NotificationInfo notificationInf
631 private static class NotificationInfo { class in class:MapMessageMonitor
641 NotificationInfo(String senderName, @Nullable String senderContactUri) { method in class:MapMessageMonitor.NotificationInfo
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/popup/
H A DPopupPopulator.java35 import com.android.launcher3.notification.NotificationInfo;
193 List<NotificationInfo> infos = new ArrayList<>(notifications.size());
196 infos.add(new NotificationInfo(launcher, notification));
260 private List<NotificationInfo> mNotificationInfos;
263 List<NotificationInfo> notificationInfos) {
H A DPopupDataProvider.java28 import com.android.launcher3.notification.NotificationInfo;
188 NotificationInfo notificationInfo = null;
197 notificationInfo = new NotificationInfo(mLauncher, activeNotifications[0]);

Completed in 658 milliseconds