Home
last modified time | relevance | path

Searched refs:notificationIntent (Results 1 – 4 of 4) 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/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()