Searched defs:notification (Results 1 - 25 of 88) sorted by relevance

1234

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationBigPictureTemplateViewWrapper.java17 package com.android.systemui.statusbar.notification;
23 import android.service.notification.StatusBarNotification;
29 * Wraps a notification containing a big picture template
39 public void notifyContentUpdated(StatusBarNotification notification) { argument
40 super.notifyContentUpdated(notification);
41 updateImageTag(notification);
44 private void updateImageTag(StatusBarNotification notification) { argument
45 final Bundle extras = notification.getNotification().extras;
H A DNotificationBigTextTemplateViewWrapper.java17 package com.android.systemui.statusbar.notification;
20 import android.service.notification.StatusBarNotification;
28 * Wraps a notification containing a big text template
39 private void resolveViews(StatusBarNotification notification) { argument
44 public void notifyContentUpdated(StatusBarNotification notification) { argument
45 // Reinspect the notification. Before the super call, because the super call also updates
47 resolveViews(notification);
48 super.notifyContentUpdated(notification);
H A DNotificationMediaTemplateViewWrapper.java17 package com.android.systemui.statusbar.notification;
20 import android.service.notification.StatusBarNotification;
27 * Wraps a notification containing a media template
38 private void resolveViews(StatusBarNotification notification) { argument
43 public void notifyContentUpdated(StatusBarNotification notification) { argument
44 // Reinspect the notification. Before the super call, because the super call also updates
46 resolveViews(notification);
47 super.notifyContentUpdated(notification);
H A DNotificationMessagingTemplateViewWrapper.java17 package com.android.systemui.statusbar.notification;
24 import android.service.notification.StatusBarNotification;
28 * Wraps a notification containing a messaging template
57 public void notifyContentUpdated(StatusBarNotification notification) { argument
58 // Reinspect the notification. Before the super call, because the super call also updates
61 super.notifyContentUpdated(notification);
H A DHybridGroupManager.java17 package com.android.systemui.statusbar.notification;
37 * A class managing hybrid groups that include {@link HybridNotificationView} and the notification
80 Notification notification) {
84 CharSequence titleText = resolveTitle(notification);
85 CharSequence contentText = resolveText(notification);
90 private CharSequence resolveText(Notification notification) { argument
91 CharSequence contentText = notification.extras.getCharSequence(Notification.EXTRA_TEXT);
93 contentText = notification.extras.getCharSequence(Notification.EXTRA_BIG_TEXT);
98 private CharSequence resolveTitle(Notification notification) { argument
99 CharSequence titleText = notification
79 bindFromNotification(HybridNotificationView reusableView, Notification notification) argument
[all...]
H A DActionListTransformState.java17 package com.android.systemui.statusbar.notification;
H A DProgressTransformState.java17 package com.android.systemui.statusbar.notification;
H A DHybridNotificationView.java17 package com.android.systemui.statusbar.notification;
81 public boolean transformTo(TransformState ownState, TransformableView notification,
84 TransformState otherState = notification.getCurrentState(
96 TransformableView notification, float transformationAmount) {
98 TransformState otherState = notification.getCurrentState(
139 public void transformTo(TransformableView notification, Runnable endRunnable) { argument
140 mTransformationHelper.transformTo(notification, endRunnable);
144 public void transformTo(TransformableView notification, float transformationAmount) { argument
145 mTransformationHelper.transformTo(notification, transformationAmount);
149 public void transformFrom(TransformableView notification) { argument
154 transformFrom(TransformableView notification, float transformationAmount) argument
[all...]
H A DNotificationCustomViewWrapper.java17 package com.android.systemui.statusbar.notification;
27 import android.service.notification.StatusBarNotification;
37 * Wraps a notification containing a custom view.
109 public void notifyContentUpdated(StatusBarNotification notification) { argument
110 super.notifyContentUpdated(notification);
H A DNotificationTemplateViewWrapper.java17 package com.android.systemui.statusbar.notification;
22 import android.service.notification.StatusBarNotification;
34 * Wraps a notification view inflated from a template.
55 TransformableView notification, final float transformationAmount) {
56 if (!(notification instanceof HybridNotificationView)) {
59 TransformState otherState = notification.getCurrentState(
81 TransformableView notification, float transformationAmount) {
82 if (!(notification instanceof HybridNotificationView)) {
85 TransformState otherState = notification.getCurrentState(
117 private void resolveTemplateViews(StatusBarNotification notification) { argument
134 notifyContentUpdated(StatusBarNotification notification) argument
[all...]
H A DFakeShadowView.java17 package com.android.systemui.statusbar.notification;
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationSignalExtractor.java17 package com.android.server.notification;
24 * not be passed on to {@link android.service.notification.NotificationListenerService}s.
32 * Called once per notification that is posted or updated.
37 * update events to the {@link android.service.notification.NotificationListenerService}s.
39 public RankingReconsideration process(NotificationRecord notification); argument
H A DGlobalSortKeyComparator.java16 package com.android.server.notification;
H A DNotificationComparator.java16 package com.android.server.notification;
35 // Whether or not the notification can bypass DND.
H A DRankingHandler.java16 package com.android.server.notification;
H A DNotificationManagerInternal.java17 package com.android.server.notification;
23 String tag, int id, Notification notification, int[] idReceived, int userId);
22 enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid, String tag, int id, Notification notification, int[] idReceived, int userId) argument
H A DImportanceExtractor.java16 package com.android.server.notification;
22 * Determines the importance of the given notification.
36 if (DBG) Slog.d(TAG, "skipping empty notification");
H A DNotificationIntrusivenessExtractor.java17 package com.android.server.notification;
21 import android.service.notification.NotificationListenerService;
26 * This {@link com.android.server.notification.NotificationSignalExtractor} notices noisy
33 /** Length of time (in milliseconds) that an intrusive or noisy notification will stay at
43 if (DBG) Slog.d(TAG, "skipping empty notification");
48 final Notification notification = record.getNotification();
49 if ((notification.defaults & Notification.DEFAULT_VIBRATE) != 0 ||
50 notification.vibrate != null ||
51 (notification.defaults & Notification.DEFAULT_SOUND) != 0 ||
52 notification
[all...]
H A DPriorityExtractor.java16 package com.android.server.notification;
22 * Determines if the given notification can bypass Do Not Disturb.
36 if (DBG) Slog.d(TAG, "skipping empty notification");
H A DPropConfig.java17 package com.android.server.notification;
H A DRankingConfig.java16 package com.android.server.notification;
H A DRateEstimator.java17 package com.android.server.notification;
H A DVisibilityExtractor.java16 package com.android.server.notification;
22 * Determines if the given notification can display sensitive content on the lockscreen.
36 if (DBG) Slog.d(TAG, "skipping empty notification");
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationOverflowIconsView.java57 public void addNotification(NotificationData.Entry notification) { argument
59 notification.notification.getNotification());
62 v.set(notification.icon.getStatusBarIcon());
63 applyColor(notification.notification.getNotification(), v);
67 private void applyColor(Notification notification, StatusBarIconView view) { argument
H A DTransformableView.java19 import com.android.systemui.statusbar.notification.TransformState;
43 * @param notification the view to transform to
45 void transformTo(TransformableView notification, Runnable endRunnable); argument
50 * @param notification the view to transform to
53 void transformTo(TransformableView notification, float transformationAmount); argument
58 * @param notification the view to transform from
60 void transformFrom(TransformableView notification); argument
65 * @param notification the view to transform from
68 void transformFrom(TransformableView notification, float transformationAmount); argument

Completed in 287 milliseconds

1234