HomeSort by relevance Sort by last modified time
    Searched refs:mNM (Results 1 - 12 of 12) sorted by null

  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java 55 NotificationManager mNM;
83 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
85 mNM.createNotificationChannel(new NotificationChannel("min", "Min", IMPORTANCE_MIN));
86 mNM.createNotificationChannel(new NotificationChannel("low", "Low", IMPORTANCE_LOW));
87 mNM.createNotificationChannel(
89 mNM.createNotificationChannel(new NotificationChannel("high", "High", IMPORTANCE_HIGH));
105 mNM.cancelAll();
129 mNM.notify(7001, n);
135 mNM.setInterruptionFilter(NotificationManager.INTERRUPTION_FILTER_ALARMS);
141 mNM.notify("default", 7004, n)
    [all...]
NotificationBuilderTest.java 54 NotificationManager mNM;
61 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
189 mNM.cancel(id);
201 mNM.notify(NOTIFY_TAG, id, n);
207 mNM.cancel(NOTIFY_TAG, id);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService_Service.java 43 NotificationManager mNM;
47 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
62 mNM.cancel(R.string.alarm_service_started);
118 mNM.notify(R.string.alarm_service_started, notification);
LocalService.java 47 private NotificationManager mNM;
66 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
81 mNM.cancel(NOTIFICATION);
118 mNM.notify(NOTIFICATION, notification);
NotifyingService.java 49 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
62 mNM.cancel(MOOD_NOTIFICATIONS);
117 mNM.notify(MOOD_NOTIFICATIONS, notification);
130 private NotificationManager mNM;
NotificationBackgroundService.java 57 private NotificationManager mNM;
63 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
88 mNM.notify(R.layout.notification_background_service, notification);
JobWorkService.java 50 private NotificationManager mNM;
101 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
154 mNM.notify(R.string.job_service_created, noteBuilder.build());
158 mNM.cancel(R.string.service_created);
MessengerService.java 54 NotificationManager mNM;
121 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
130 mNM.cancel(R.string.remote_service_started);
168 mNM.notify(R.string.remote_service_started, notification);
ServiceStartArguments.java 55 private NotificationManager mNM;
104 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
195 mNM.notify(R.string.service_created, noteBuilder.build());
199 mNM.cancel(R.string.service_created);
RemoteService.java 68 NotificationManager mNM;
72 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
92 mNM.cancel(R.string.remote_service_started);
209 mNM.notify(R.string.remote_service_started, notification);
ForegroundService.java 61 private NotificationManager mNM;
74 mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 49 private NotificationManager mNM;
60 mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
65 mNM.notify(NOTIFY_ID, note);
114 mNM.cancel(NOTIFY_ID);

Completed in 277 milliseconds