HomeSort by relevance Sort by last modified time
    Searched full:notificationmanager (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageView.java 22 import android.app.NotificationManager;
37 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
LocalService.java 20 import android.app.NotificationManager;
39 * <p>Notice the use of the {@link NotificationManager} when interesting things
46 private NotificationManager mNM;
61 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
AlarmService_Service.java 24 import android.app.NotificationManager;
43 NotificationManager mNM;
47 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
IncomingMessage.java 23 import android.app.NotificationManager;
80 NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
NotificationDisplay.java 24 import android.app.NotificationManager;
71 ((NotificationManager) getSystemService(NOTIFICATION_SERVICE))
MessengerService.java 20 import android.app.NotificationManager;
46 * <p>Notice the use of the {@link NotificationManager} when interesting things
54 NotificationManager mNM;
121 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
NotifyingService.java 24 import android.app.NotificationManager;
50 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
128 private NotificationManager mNM;
  /cts/tests/tests/app/src/android/app/cts/
NotificationManagerTest.java 20 import android.app.NotificationManager;
35 @TestTargetClass(NotificationManager.class)
38 private NotificationManager mNotificationManager;
43 mNotificationManager = (NotificationManager) mContext.getSystemService(
65 @ToBeFixed(bug = "1716929", explanation = "NotificationManager#notify(int, Notification) "
84 @ToBeFixed(bug = "1716929", explanation = "NotificationManager#cancel(int) find a way "
104 @ToBeFixed(bug = "1716929", explanation = "NotificationManager#cancelAll() find a way to "
  /frameworks/base/services/java/com/android/server/status/
StorageNotification.java 21 import android.app.NotificationManager;
282 NotificationManager notificationManager = (NotificationManager) mContext
285 if (notificationManager == null) {
319 notificationManager.notify(notificationId, mUsbStorageNotification);
321 notificationManager.cancel(notificationId);
344 NotificationManager notificationManager = (NotificationManager) mContex
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingRequest.java 22 import android.app.NotificationManager;
92 NotificationManager manager = (NotificationManager)
100 NotificationManager manager = (NotificationManager) context
  /packages/apps/Mms/src/com/android/mms/transaction/
SimFullReceiver.java 24 import android.app.NotificationManager;
43 NotificationManager nm = (NotificationManager)
SmsRejectedReceiver.java 22 import android.app.NotificationManager;
53 NotificationManager nm = (NotificationManager)
  /packages/apps/Phone/src/com/android/phone/
FakePhoneActivity.java 20 import android.app.NotificationManager;
68 NotificationManager nm =
69 (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
StatusBarTest.java 21 import android.app.NotificationManager;
27 import android.app.NotificationManager;
43 NotificationManager mNotificationManager;
54 mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
PowerTest.java 21 import android.app.NotificationManager;
30 import android.app.NotificationManager;
TestActivity.java 21 import android.app.NotificationManager;
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.app.NotificationManager.html 10 android.app.NotificationManager
74 Class android.app.<A HREF="../../../../reference/android/app/NotificationManager.html" target="_top"><font size="+2"><code>NotificationManager</code></font></A>
86 <A NAME="android.app.NotificationManager.cancel_added(java.lang.String, int)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/NotificationManager.html#cancel(java.lang.String, int)" target="_top"><code>cancel</code></A>(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
93 <A NAME="android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/NotificationManager.html#notify(java.lang.String, int, android.app.Notification)" target="_top"><code>notify</code></A>(<code>String,</nobr> int<nobr>,</nobr> Notification<nobr><nobr></code>)</nobr>
  /frameworks/base/docs/html/guide/topics/ui/notifiers/
notifications.jd 11 <li>{@link android.app.NotificationManager}</li>
62 classes: {@link android.app.Notification} and {@link android.app.NotificationManager}.</p>
66 as a sound to play. The {@link android.app.NotificationManager} is an Android system service that
67 executes and manages all Notifications. You do not instantiate the NotificationManager. In order
68 to give it your Notification, you must retrieve a reference to the NotificationManager with
71 {@link android.app.NotificationManager#notify(int,Notification) notify()}. </p>
75 <li>Get a reference to the NotificationManager:
78 NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
101 <li>Pass the Notification to the NotificationManager
    [all...]
  /packages/apps/Email/src/com/android/exchange/
CalendarSyncEnabler.java 26 import android.app.NotificationManager;
107 NotificationManager nm =
108 (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 21 import android.app.NotificationManager;
211 //post intent to NotificationManager to display icon if necessary
291 * This method sends a notification to NotificationManager to display
303 NotificationManager mNotificationMgr =
304 (NotificationManager)mContext.getSystemService(
325 NotificationManager mNotificationMgr =
326 (NotificationManager)mContext.getSystemService(
  /packages/apps/AlarmClock/src/com/android/alarmclock/
AlarmAlertFullScreen.java 21 import android.app.NotificationManager;
173 NotificationManager nm = getNotificationManager();
195 private NotificationManager getNotificationManager() {
196 return (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
205 NotificationManager nm = getNotificationManager();
AlarmReceiver.java 21 import android.app.NotificationManager;
152 NotificationManager nm = getNotificationManager(context);
156 private NotificationManager getNotificationManager(Context context) {
157 return (NotificationManager)
162 NotificationManager nm = getNotificationManager(context);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertFullScreen.java 21 import android.app.NotificationManager;
176 NotificationManager nm = getNotificationManager();
198 private NotificationManager getNotificationManager() {
199 return (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
209 NotificationManager nm = getNotificationManager();
AlarmReceiver.java 21 import android.app.NotificationManager;
152 NotificationManager nm = getNotificationManager(context);
156 private NotificationManager getNotificationManager(Context context) {
157 return (NotificationManager)
162 NotificationManager nm = getNotificationManager(context);
  /frameworks/base/core/java/android/app/
NotificationManager.java 56 public class NotificationManager
58 private static String TAG = "NotificationManager";
75 /*package*/ NotificationManager(Context context, Handler handler)

Completed in 917 milliseconds

1 2 3 4