OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mNotificationManager
(Results
26 - 42
of
42
) sorted by null
1
2
/development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
HeadsUpNotificationFragment.java
43
private NotificationManager
mNotificationManager
;
75
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
93
mNotificationManager
.notify(NOTIFICATION_ID, createNotification(
OtherMetadataFragment.java
65
private NotificationManager
mNotificationManager
;
108
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
208
mNotificationManager
.notify(mIncrementalNotificationId, createNotification(priority,
/external/sl4a/Utils/src/com/googlecode/android_scripting/
ForegroundService.java
32
private NotificationManager
mNotificationManager
;
48
if (
mNotificationManager
== null) {
49
mNotificationManager
= (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
51
return
mNotificationManager
;
/development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java
162
NotificationManager
mNotificationManager
= (NotificationManager) getSystemService(
164
mNotificationManager
.createNotificationChannel(new NotificationChannel(
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/recommendation/
UpdateRecommendationsService.java
53
private NotificationManager
mNotificationManager
;
67
if (
mNotificationManager
== null) {
68
mNotificationManager
= (NotificationManager) getApplicationContext()
105
mNotificationManager
.notify(i + 1, notification);
/developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java
65
private NotificationManager
mNotificationManager
;
108
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
208
mNotificationManager
.notify(mIncrementalNotificationId, createNotification(priority,
/developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java
65
private NotificationManager
mNotificationManager
;
108
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
208
mNotificationManager
.notify(mIncrementalNotificationId, createNotification(priority,
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
MediaNotificationManager.java
62
private NotificationManager
mNotificationManager
;
80
mNotificationManager
= (NotificationManager) mService
95
mNotificationManager
.cancelAll();
134
mNotificationManager
.cancel(NOTIFICATION_ID);
203
mNotificationManager
.notify(NOTIFICATION_ID, notification);
214
mNotificationManager
.notify(NOTIFICATION_ID, notification);
349
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
/cts/tests/app/src/android/app/cts/
NotificationManagerTest.java
126
private NotificationManager
mNotificationManager
;
137
mNotificationManager
= (NotificationManager) mContext.getSystemService(
140
mNotificationManager
.cancelAll();
141
mNotificationManager
.createNotificationChannel(new NotificationChannel(
156
mNotificationManager
.cancelAll();
159
mNotificationManager
.removeAutomaticZenRule(id);
164
List<NotificationChannel> channels =
mNotificationManager
.getNotificationChannels();
170
mNotificationManager
.deleteNotificationChannel(nc.getId());
178
List<NotificationChannelGroup> groups =
mNotificationManager
.getNotificationChannelGroups();
181
mNotificationManager
.deleteNotificationChannelGroup(ncg.getId())
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java
173
private NotificationManager
mNotificationManager
;
196
mNotificationManager
.notify(NOTIFICATION_ID, notification);
221
mNotificationManager
= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
225
mNotificationManager
.createNotificationChannel(new NotificationChannel(
376
mNotificationManager
.cancel(NOTIFICATION_ID);
/cts/tests/admin/src/android/admin/cts/
DevicePolicyManagerTest.java
69
private NotificationManager
mNotificationManager
;
97
mNotificationManager
=
[
all
...]
/developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessagingService.java
48
private NotificationManagerCompat
mNotificationManager
;
55
mNotificationManager
= NotificationManagerCompat.from(getApplicationContext());
150
mNotificationManager
.notify(conversation.getConversationId(), builder.build());
/developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessagingService.java
48
private NotificationManagerCompat
mNotificationManager
;
55
mNotificationManager
= NotificationManagerCompat.from(getApplicationContext());
150
mNotificationManager
.notify(conversation.getConversationId(), builder.build());
/development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessagingService.java
48
private NotificationManagerCompat
mNotificationManager
;
55
mNotificationManager
= NotificationManagerCompat.from(getApplicationContext());
150
mNotificationManager
.notify(conversation.getConversationId(), builder.build());
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
SettingsFacade.java
59
private final NotificationManager
mNotificationManager
;
76
mNotificationManager
=
78
if (!
mNotificationManager
.isNotificationPolicyAccessGranted()) {
AndroidFacade.java
110
private final NotificationManager
mNotificationManager
;
127
mNotificationManager
=
852
mNotificationManager
.createNotificationChannel(channel);
872
mNotificationManager
.notify(notificationId, notification);
[
all
...]
/cts/tests/tests/app.usage/src/android/app/usage/cts/
UsageStatsTest.java
541
NotificationManager
mNotificationManager
=
548
mNotificationManager
.createNotificationChannel(mChannel);
557
mNotificationManager
.notify(1, mBuilder.build());
[
all
...]
Completed in 2562 milliseconds
1
2