HomeSort by relevance Sort by last modified time
    Searched full:notificationid (Results 26 - 50 of 68) sorted by null

12 3

  /development/samples/browseable/SynchronizedNotifications/Wearable/src/com.example.android.wearable.synchronizednotifications/
NotificationUpdateService.java 71 int notificationId = intent.getIntExtra(Constants.KEY_NOTIFICATION_ID, -1);
72 if (notificationId == Constants.BOTH_ID) {
73 dismissPhoneNotification(notificationId);
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 123 public int notificationId;
257 + " notificationId: " + notif.notificationId
294 mNetInitiatedListener.sendNiResponse(notif.notificationId,
315 mNetInitiatedListener.sendNiResponse(notif.notificationId,
328 + " notificationId: " + notif.notificationId);
344 mNetInitiatedListener.sendNiResponse(notif.notificationId,
365 if (DEBUG) Log.d(TAG, "setNiNotification, notifyId: " + notif.notificationId +
394 notificationManager.notifyAsUser(null, notif.notificationId, mNiNotificationBuilder.build()
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 70 int notificationId = intent.getIntExtra(AlertUtils.NOTIFICATION_ID_KEY, -1);
100 if (notificationId != -1) {
103 nm.cancel(notificationId);
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
MyBroadcastReceiver.java 241 final int notificationId = intent.getIntExtra(EXTRA_NOTIFICATION_ID, -1);
243 Log.d(TAG, "sendNotification: id=" + notificationId + ", type=" + notificationType
247 notificationId);
303 .notify(notificationId, notification);
  /frameworks/base/docs/html/training/wearables/notifications/
pages.jd 71 notificationManager.notify(notificationId, notification);
creating.jd 65 int notificationId = 001;
84 notificationManager.notify(notificationId, notificationBuilder.build());
300 notificationManager.notify(notificationId, notif);
  /platform_testing/tests/androidbvt/src/com/android/androidbvt/
SysUINotificationShadeTests.java 231 * @param notificationId An identifier for this notification
234 private void sendNotificationsWithInLineReply(int notificationId, String title) {
242 .setContentTitle(Integer.toString(notificationId))
249 mNotificationManager.notify(notificationId, n.build());
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/recommendation/
RecommendationBuilder.java 228 private static File getNotificationBackground(Context context, int notificationId) {
229 return new File(context.getCacheDir(), "tmp" + Integer.toString(notificationId) + ".png");
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ExternalCallNotifier.java 71 public NotificationInfo(Call call, int notificationId) {
74 mNotificationId = notificationId;
162 * @param notificationId The notification ID associated with the external call which is to be
165 public void pullExternalCall(int notificationId) {
167 if (info.getNotificationId() == notificationId) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 382 final int notificationId =
399 NotificationActionUtils.sUndoNotifications.get(notificationId);
457 final int notificationId =
461 nm.cancel(notificationId);
463 NotificationActionUtils.sUndoNotifications.remove(notificationId);
464 NotificationActionUtils.sNotificationTimestamps.delete(notificationId);
503 final int notificationId = getNotificationId(account.getAccountManagerAccount(), folder);
514 nm.cancel(notificationId);
537 if (NotificationActionUtils.sUndoNotifications.get(notificationId) == null) {
606 final int notificationId
    [all...]
  /packages/apps/Email/src/com/android/email/
EmailNotificationController.java 107 * @param notificationId the notification id to check
110 private static boolean needsOngoingNotification(int notificationId) {
113 return (notificationId & NOTIFICATION_ID_BASE_MASK) == NOTIFICATION_ID_BASE_SECURITY_NEEDED;
168 * @param notificationId The ID of the notification to register with the service.
171 String contentText, Intent intent, int notificationId) {
174 needsOngoingNotification(notificationId));
175 mNotificationManager.notify(notificationId, builder.build());
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
MovieDetailsFragment.java 110 private void removeNotification(int notificationId) {
111 if (notificationId != NO_NOTIFICATION) {
114 notificationManager.cancel(notificationId);
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationHelper.java 320 public void sendNotificationsWithInLineReply(int notificationId, boolean isHeadsUp) {
328 .setContentTitle(Integer.toString(notificationId))
337 mNotificationManager.notify(notificationId, n.build());
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
HeadsUpNotificationFragment.java 39 * NotificationId used for the notifications from this Fragment.
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
HeadsUpNotificationFragment.java 39 * NotificationId used for the notifications from this Fragment.
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
HeadsUpNotificationFragment.java 39 * NotificationId used for the notifications from this Fragment.
  /developers/build/prebuilts/gradle/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
SynchronizedNotificationsFragment.java 97 private void buildLocalOnlyNotification(String title, String content, int notificationId,
116 NotificationManagerCompat.from(this.getActivity()).notify(notificationId, builder.build());
  /developers/samples/android/wearable/wear/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
SynchronizedNotificationsFragment.java 97 private void buildLocalOnlyNotification(String title, String content, int notificationId,
116 NotificationManagerCompat.from(this.getActivity()).notify(notificationId, builder.build());
  /development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.wearable.synchronizednotifications/
SynchronizedNotificationsFragment.java 97 private void buildLocalOnlyNotification(String title, String content, int notificationId,
116 NotificationManagerCompat.from(this.getActivity()).notify(notificationId, builder.build());
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 272 public void expectTestNotification(int notificationId, int alertId, int highPriority) {
273 mExpectedNotifications[notificationId] = new NotificationInstance(alertId,
277 public void expectTestNotification(int notificationId, int[] alertIds, int priority) {
278 mExpectedNotifications[notificationId] = new NotificationInstance(alertIds, priority);
300 assertNull("Received unexpected notificationId " + id + debugStr, actual);
301 assertTrue("NotificationId " + id + " should have been cancelled." + debugStr,
304 assertNotNull("Expected notificationId " + id + " but it was not posted."
306 assertFalse("NotificationId " + id + " should not have been cancelled."
    [all...]
  /developers/build/prebuilts/gradle/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizListenerService.java 155 int notificationId = Integer.parseInt(uri.getLastPathSegment());
157 .cancel(notificationId);
  /developers/samples/android/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizListenerService.java 155 int notificationId = Integer.parseInt(uri.getLastPathSegment());
157 .cancel(notificationId);
  /development/samples/browseable/Quiz/Wearable/src/com.example.android.wearable.quiz/
QuizListenerService.java 155 int notificationId = Integer.parseInt(uri.getLastPathSegment());
157 .cancel(notificationId);
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/objectal/
ALSource.java 238 int notificationID,
456 public native void unregisterNotification(int notificationID);
  /packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/
DialogSmsDisplayTests.java 276 public void sendOnNewIntent(String message, String dest, int notificationId) {
283 di.putExtra(DialogSmsDisplay.SMS_NOTIFICATION_ID_EXTRA, notificationId);

Completed in 2687 milliseconds

12 3