HomeSort by relevance Sort by last modified time
    Searched refs:NotificationManager (Results 1 - 25 of 73) sorted by null

1 2 3

  /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);
NotifyingService.java 24 import android.app.NotificationManager;
50 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
128 private NotificationManager mNM;
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);
ForegroundService.java 21 import android.app.NotificationManager;
57 private NotificationManager mNM;
117 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
TestAlertActivity.java 4 import android.app.NotificationManager;
27 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
StatusBarTest.java 21 import android.app.NotificationManager;
28 import android.app.NotificationManager;
46 NotificationManager mNotificationManager;
57 mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  /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);
EmergencyCallbackModeService.java 20 import android.app.NotificationManager;
55 private NotificationManager mNotificationManager = null;
88 mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPermissionRequest.java 20 import android.app.NotificationManager;
89 NotificationManager notificationManager =
90 (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
91 notificationManager.notify(NOTIFICATION_ID, notification);
95 NotificationManager manager = (NotificationManager) context
BluetoothPairingRequest.java 22 import android.app.NotificationManager;
98 NotificationManager manager = (NotificationManager)
106 NotificationManager manager = (NotificationManager) context
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmService.java 20 import android.app.NotificationManager;
67 // The NotificationManager used to send notifications to the status bar.
68 NotificationManager mNotificationManager;
133 mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
208 // Sets a unique ID for the notification and sends it to NotificationManager to be
  /packages/apps/Email/src/com/android/exchange/
CalendarSyncEnabler.java 26 import android.app.NotificationManager;
107 NotificationManager nm =
108 (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
  /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/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
FixVibrateSetting.java 21 import android.app.NotificationManager;
33 NotificationManager mNotificationManager;
46 mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
RealSystemFacade.java 4 import android.app.NotificationManager;
17 private NotificationManager mNotificationManager;
21 mNotificationManager = (NotificationManager)
  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
LocalServiceTest.java 20 import android.app.NotificationManager;
  /frameworks/base/core/java/android/app/
NotificationManager.java 57 public class NotificationManager
59 private static String TAG = "NotificationManager";
76 /*package*/ NotificationManager(Context context, Handler handler)
  /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;
150 NotificationManager nm = getNotificationManager(context);
154 private NotificationManager getNotificationManager(Context context) {
155 return (NotificationManager)
160 NotificationManager nm = getNotificationManager(context);

Completed in 2353 milliseconds

1 2 3