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, PendingIntent.FLAG_IMMUTABLE); in onStartCommand()
/packages/apps/Car/libs/car-ui-lib/paintbooth/src/main/java/com/android/car/ui/paintbooth/
DVisibleBoundsSimulator.java72 Intent notificationIntent = new Intent(this, VisibleBoundsSimulator.class); in onCreate() local
75 notificationIntent, PendingIntent.FLAG_IMMUTABLE); in onCreate()
/packages/apps/Car/libs/car-ui-lib/paintbooth/src/main/java/com/android/car/ui/paintbooth/currentactivity/
DCurrentActivityService.java76 Intent notificationIntent = new Intent(this, CurrentActivityService.class); in onCreate() local
79 notificationIntent, PendingIntent.FLAG_IMMUTABLE); 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.java839 Intent notificationIntent = new Intent(this, NotificationService.class); in onStart() local
840 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onStart()
841 startService(notificationIntent); in onStart()