Searched refs:notification (Results 1 - 25 of 148) sorted by relevance

123456

/frameworks/base/core/java/android/service/notification/
H A DIStatusBarNotificationHolder.aidl17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
H A DAdjustment.aidl17 package android.service.notification;
H A DCondition.aidl17 package android.service.notification;
H A DNotificationRankingUpdate.aidl17 package android.service.notification;
H A DStatusBarNotification.aidl17 package android.service.notification;
H A DIConditionListener.aidl17 package android.service.notification;
20 import android.service.notification.Condition;
H A DZenModeConfig.aidl17 package android.service.notification;
H A DIConditionProvider.aidl17 package android.service.notification;
20 import android.service.notification.Condition;
H A DINotificationListener.aidl17 package android.service.notification;
19 import android.service.notification.IStatusBarNotificationHolder;
20 import android.service.notification.StatusBarNotification;
21 import android.service.notification.NotificationRankingUpdate;
H A DStatusBarNotification.java17 package android.service.notification;
29 * the status bar and any {@link android.service.notification.NotificationListenerService}s.
42 private final Notification notification; field in class:StatusBarNotification
50 int initialPid, int score, Notification notification, UserHandle user) {
51 this(pkg, opPkg, id, tag, uid, initialPid, score, notification, user,
57 int initialPid, Notification notification, UserHandle user, String overrideGroupKey,
60 if (notification == null) throw new NullPointerException();
68 this.notification = notification;
77 int initialPid, int score, Notification notification, UserHandl
49 StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, int initialPid, int score, Notification notification, UserHandle user) argument
56 StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, int initialPid, Notification notification, UserHandle user, String overrideGroupKey, long postTime) argument
76 StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, int initialPid, int score, Notification notification, UserHandle user, long postTime) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
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
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
/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 DRankingHandler.java16 package com.android.server.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 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 DNotificationRecord.java16 package com.android.server.notification;
18 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_MIN;
19 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_UNSPECIFIED;
20 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_DEFAULT;
21 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_HIGH;
22 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_LOW;
23 import static android.service.notification.NotificationListenerService.Ranking.IMPORTANCE_MAX;
33 import android.service.notification.NotificationListenerService;
34 import android.service.notification.StatusBarNotification;
47 * {@link android.service.notification
[all...]
/frameworks/support/v4/gingerbread/android/support/v4/app/
H A DNotificationCompatGingerbread.java24 public static Notification add(Notification notification, Context context, argument
27 notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
28 notification.fullScreenIntent = fullScreenIntent;
29 return notification;
/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 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...]
/frameworks/support/v4/eclair/android/support/v4/app/
H A DNotificationManagerCompatEclair.java29 Notification notification) {
30 notificationManager.notify(tag, id, notification);
28 postNotification(NotificationManager notificationManager, String tag, int id, Notification notification) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeController.java21 import android.service.notification.Condition;
22 import android.service.notification.ZenModeConfig;
23 import android.service.notification.ZenModeConfig.ZenRule;
/frameworks/support/v4/java/android/support/v4/app/
H A DINotificationSideChannel.aidl29 * Send an ambient notification to the service.
31 void notify(String packageName, int id, String tag, in Notification notification);
34 * Cancel an already-notified notification.

Completed in 305 milliseconds

123456