OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mNotificationManager
(Results
1 - 25
of
42
) sorted by null
1
2
/cts/tests/tests/notificationlegacy/notificationlegacy28/src/android/app/notification/legacy28/cts/
NotificationManager28Test.java
46
private NotificationManager
mNotificationManager
;
53
mNotificationManager
= (NotificationManager) mContext.getSystemService(
55
mNotificationManager
.createNotificationChannel(new NotificationChannel(
71
mNotificationManager
.notify(id, notification);
84
final StatusBarNotification[] sbns =
mNotificationManager
.getActiveNotifications();
/cts/tests/tests/notificationlegacy/notificationlegacy29/src/android/app/notification/legacy29/cts/
NotificationManager29Test.java
46
private NotificationManager
mNotificationManager
;
53
mNotificationManager
= (NotificationManager) mContext.getSystemService(
55
mNotificationManager
.createNotificationChannel(new NotificationChannel(
71
mNotificationManager
.notify(id, notification);
84
final StatusBarNotification[] sbns =
mNotificationManager
.getActiveNotifications();
NotificationAssistantServiceTest.java
72
private NotificationManager
mNotificationManager
;
81
mNotificationManager
= (NotificationManager) mContext.getSystemService(
83
mNotificationManager
.createNotificationChannel(new NotificationChannel(
107
mNotificationManager
.allowAssistantAdjustment(Adjustment.KEY_USER_SENTIMENT);
143
mNotificationManager
.allowAssistantAdjustment(Adjustment.KEY_USER_SENTIMENT);
177
mNotificationManager
.allowAssistantAdjustment(Adjustment.KEY_IMPORTANCE);
210
mNotificationManager
.allowAssistantAdjustment(Adjustment.KEY_CONTEXTUAL_ACTIONS);
261
mNotificationManager
.allowAssistantAdjustment(Adjustment.KEY_TEXT_REPLIES);
306
mNotificationManager
.disallowAssistantAdjustment(Adjustment.KEY_IMPORTANCE);
341
mNotificationManager
.getAllowedAssistantAdjustments()
[
all
...]
TestNotificationAssistant.java
35
private NotificationManager
mNotificationManager
;
50
mNotificationManager
= getSystemService(NotificationManager.class);
84
currentCapabilities =
mNotificationManager
.getAllowedAssistantAdjustments();
/developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeService.java
31
private NotificationManagerCompat
mNotificationManager
;
43
mNotificationManager
= NotificationManagerCompat.from(this);
94
mNotificationManager
.notify(Constants.NOTIFICATION_ID, notification);
/developers/samples/android/deprecated/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeService.java
31
private NotificationManagerCompat
mNotificationManager
;
43
mNotificationManager
= NotificationManagerCompat.from(this);
94
mNotificationManager
.notify(Constants.NOTIFICATION_ID, notification);
/development/samples/Alarm/src/com/example/android/newalarm/
AlarmService.java
68
NotificationManager
mNotificationManager
;
133
mNotificationManager
= (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
158
mNotificationManager
.cancel(R.string.alarm_service_started);
205
mNotificationManager
.notify(
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
RecipeService.java
31
private NotificationManagerCompat
mNotificationManager
;
43
mNotificationManager
= NotificationManagerCompat.from(this);
94
mNotificationManager
.notify(Constants.NOTIFICATION_ID, notification);
/development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java
31
private NotificationManager
mNotificationManager
;
70
mNotificationManager
= (NotificationManager)
128
mNotificationManager
= (NotificationManager)
131
mNotificationManager
.notify(CommonConstants.NOTIFICATION_ID, builder.build());
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
Utils.java
84
NotificationManager
mNotificationManager
=
89
mNotificationManager
.createNotificationChannel(channel);
98
mNotificationManager
.notify(notificationId, notification);
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
RecommendationBuilder.java
41
private NotificationManager
mNotificationManager
;
104
if (
mNotificationManager
== null) {
105
mNotificationManager
= (NotificationManager) mContext
135
mNotificationManager
.notify(mId, notification);
136
mNotificationManager
= null;
/developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/
ActiveNotificationsFragment.java
52
private NotificationManager
mNotificationManager
;
77
mNotificationManager
= (NotificationManager) getActivity().getSystemService(
120
mNotificationManager
.notify(getNewNotificationId(), notification);
145
mNotificationManager
.notify(NOTIFICATION_GROUP_SUMMARY_ID, notification);
148
mNotificationManager
.cancel(NOTIFICATION_GROUP_SUMMARY_ID);
181
final StatusBarNotification[] activeNotifications =
mNotificationManager
/developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java
38
private NotificationManager
mNotificationManager
;
75
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
151
mNotificationManager
.notify(mIncrementalNotificationId, createNotification(visibility));
HeadsUpNotificationFragment.java
43
private NotificationManager
mNotificationManager
;
75
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
93
mNotificationManager
.notify(NOTIFICATION_ID, createNotification(
/developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediasession/service/notifications/
MediaNotificationManager.java
65
private final NotificationManager
mNotificationManager
;
70
mNotificationManager
=
104
mNotificationManager
.cancelAll();
112
return
mNotificationManager
;
180
if (
mNotificationManager
.getNotificationChannel(CHANNEL_ID) == null) {
196
mNotificationManager
.createNotificationChannel(mChannel);
/developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediasession/service/notifications/
MediaNotificationManager.java
65
private final NotificationManager
mNotificationManager
;
70
mNotificationManager
=
104
mNotificationManager
.cancelAll();
112
return
mNotificationManager
;
180
if (
mNotificationManager
.getNotificationChannel(CHANNEL_ID) == null) {
196
mNotificationManager
.createNotificationChannel(mChannel);
/developers/samples/android/notification/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/
ActiveNotificationsFragment.java
52
private NotificationManager
mNotificationManager
;
77
mNotificationManager
= (NotificationManager) getActivity().getSystemService(
120
mNotificationManager
.notify(getNewNotificationId(), notification);
145
mNotificationManager
.notify(NOTIFICATION_GROUP_SUMMARY_ID, notification);
148
mNotificationManager
.cancel(NOTIFICATION_GROUP_SUMMARY_ID);
181
final StatusBarNotification[] activeNotifications =
mNotificationManager
/developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java
38
private NotificationManager
mNotificationManager
;
75
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
151
mNotificationManager
.notify(mIncrementalNotificationId, createNotification(visibility));
HeadsUpNotificationFragment.java
43
private NotificationManager
mNotificationManager
;
75
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
93
mNotificationManager
.notify(NOTIFICATION_ID, createNotification(
/development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java
37
private NotificationManager
mNotificationManager
;
51
mNotificationManager
= (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
143
mNotificationManager
.cancel(R.layout.status_bar_notifications);
215
mNotificationManager
.notify(MOOD_NOTIFICATIONS, notifBuidler.build());
243
mNotificationManager
.notify(MOOD_NOTIFICATIONS, notif);
268
mNotificationManager
.notify(
/development/samples/browseable/ActiveNotifications/src/com.example.android.activenotifications/
ActiveNotificationsFragment.java
52
private NotificationManager
mNotificationManager
;
77
mNotificationManager
= (NotificationManager) getActivity().getSystemService(
120
mNotificationManager
.notify(getNewNotificationId(), notification);
145
mNotificationManager
.notify(NOTIFICATION_GROUP_SUMMARY_ID, notification);
148
mNotificationManager
.cancel(NOTIFICATION_GROUP_SUMMARY_ID);
181
final StatusBarNotification[] activeNotifications =
mNotificationManager
/development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
VisibilityMetadataFragment.java
38
private NotificationManager
mNotificationManager
;
75
mNotificationManager
= (NotificationManager) getActivity().getSystemService(Context
151
mNotificationManager
.notify(mIncrementalNotificationId, createNotification(visibility));
/cts/tests/tests/notificationlegacy/notificationlegacy27/src/android/app/notification/legacy/cts/
LegacyNotificationManagerTest.java
67
private NotificationManager
mNotificationManager
;
81
mNotificationManager
= (NotificationManager) mContext.getSystemService(
83
mNotificationManager
.createNotificationChannel(new NotificationChannel(
108
NotificationManager.Policy origPolicy =
mNotificationManager
.getNotificationPolicy();
117
mNotificationManager
.setNotificationPolicy(new NotificationManager.Policy(0, 0, 0));
118
NotificationManager.Policy policy =
mNotificationManager
.getNotificationPolicy();
127
mNotificationManager
.setNotificationPolicy(new NotificationManager.Policy(
130
policy =
mNotificationManager
.getNotificationPolicy();
150
NotificationManager.Policy userPolicy =
mNotificationManager
.getNotificationPolicy();
154
mNotificationManager
.setNotificationPolicy(appPolicy)
[
all
...]
/cts/tests/tests/notificationlegacy/notificationlegacy20/src/android/app/notification/legacy20/cts/
LegacyNotificationManager20Test.java
66
private NotificationManager
mNotificationManager
;
77
mNotificationManager
= (NotificationManager) mContext.getSystemService(
79
mNotificationManager
.createNotificationChannel(new NotificationChannel(
150
mNotificationManager
.notify(id, notification);
213
final StatusBarNotification[] sbns =
mNotificationManager
.getActiveNotifications();
237
final StatusBarNotification[] sbns =
mNotificationManager
.getActiveNotifications();
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
BubblesVerifierActivity.java
50
private NotificationManager
mNotificationManager
;
124
mNotificationManager
= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
125
mNotificationManager
.createNotificationChannel(
238
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
269
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
300
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
325
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
354
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
394
mNotificationManager
.notify(NOTIFICATION_ID, builder.build());
423
mNotificationManager
.notify(NOTIFICATION_ID, builder.build())
[
all
...]
Completed in 537 milliseconds
1
2