Home
last modified time | relevance | path

Searched refs:notificationIntent (Results 1 – 7 of 7) sorted by relevance

/packages/apps/TV/src/com/android/tv/receiver/
DBootCompletedReceiver.java65 Intent notificationIntent = new Intent(context, NotificationService.class); in onReceive() local
66 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onReceive()
67 context.startService(notificationIntent); in onReceive()
/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/
DTmaForegroundService.java59 Intent notificationIntent = new Intent(this, TmaPrefsActivity.class); in onStartCommand() local
61 0, notificationIntent, 0); in onStartCommand()
/packages/apps/Car/libs/car-ui-lib/tests/paintbooth/src/com/android/car/ui/paintbooth/
DVisibleBoundsSimulator.java72 Intent notificationIntent = new Intent(this, VisibleBoundsSimulator.class); in onCreate() local
75 notificationIntent, 0); in onCreate()
/packages/apps/Car/libs/car-ui-lib/tests/paintbooth/src/com/android/car/ui/paintbooth/currentactivity/
DCurrentActivityService.java76 Intent notificationIntent = new Intent(this, CurrentActivityService.class); in onCreate() local
79 notificationIntent, 0); in onCreate()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DUpdateHandler.java864 final PendingIntent notificationIntent = PendingIntent.getActivity(context, in showDictionaryAvailableNotification() local
870 if (null == notificationIntent || null == notificationManager) return; in showDictionaryAvailableNotification()
878 .setContentIntent(notificationIntent) in showDictionaryAvailableNotification()
/packages/apps/TV/src/com/android/tv/recommendation/
DNotificationService.java440 final PendingIntent notificationIntent = PendingIntent.getActivity(this, 0, intent, 0); in sendNotification() local
450 .setContentIntent(notificationIntent) in sendNotification()
/packages/apps/TV/src/com/android/tv/
DMainActivity.java834 Intent notificationIntent = new Intent(this, NotificationService.class); in onStart() local
835 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onStart()
836 startService(notificationIntent); in onStart()