Home | History | Annotate | Download | only in phone

Lines Matching refs:notification

28 import android.app.Notification;
123 private static final int HIDE_ICONS_BELOW_SCORE = Notification.PRIORITY_LOW * NOTIFICATION_PRIORITY_MULTIPLIER;
167 View mNotificationPanel; // the sliding/resizing panel within the notification window
454 mLocationController = new LocationController(mContext); // will post a notification
719 public void addNotification(IBinder key, StatusBarNotification notification) {
720 /* if (DEBUG) */ Slog.d(TAG, "addNotification score=" + notification.score);
721 StatusBarIconView iconView = addNotificationViews(key, notification);
737 notification.notification.intruderView != null)) {
738 Slog.d(TAG, "Presenting high-priority notification");
742 if (notification.notification.intruderView == null) {
743 Slog.e(TAG, notification.notification.toString() + " wanted to intrude but intruderView was null");
748 PendingIntent contentIntent = notification.notification.contentIntent;
751 notification.pkg, notification.tag, notification.id)
754 mIntruderAlertView.applyIntruderContent(notification.notification.intruderView, listener);
756 mCurrentlyIntrudingNotification = notification;
761 // 3. Set alarm to age the notification off (TODO)
769 if (notification.notification.fullScreenIntent != null) {
771 Slog.d(TAG, "Notification has fullScreenIntent; sending fullScreenIntent");
773 notification.notification.fullScreenIntent.send();
781 tick(null, notification, true);
835 if (provisioned || showNotificationEvenIfUnprovisioned(ent.notification)) {
889 if ((provisioned && ent.notification.score >= HIDE_ICONS_BELOW_SCORE)
890 || showNotificationEvenIfUnprovisioned(ent.notification)) {
1390 * number of children. Only children visible when the notification area is fully
1862 if (n.notification.tickerText != null && mStatusBarWindow.getWindowToken() != null) {
1961 pw.println(" notification icons: " + N);
1965 StatusBarNotification n = e.notification;
1967 pw.println(" notification=" + n.notification);
1968 pw.println(" tickerText=\"" + n.notification.tickerText + "\"");