Home
last modified time | relevance | path

Searched refs:NotificationIntentReceiver (Results 1 – 3 of 3) sorted by relevance

/development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
DNotificationUtil.java30 Intent intent = new Intent(NotificationIntentReceiver.ACTION_EXAMPLE) in getExamplePendingIntent()
31 .setClass(context, NotificationIntentReceiver.class); in getExamplePendingIntent()
DMainActivity.java193 sendBroadcast(new Intent(NotificationIntentReceiver.ACTION_DISABLE_MESSAGES) in updateNotifications()
194 .setClass(this, NotificationIntentReceiver.class)); in updateNotifications()
215 sendBroadcast(new Intent(NotificationIntentReceiver.ACTION_ENABLE_MESSAGES) in postNotifications()
216 .setClass(this, NotificationIntentReceiver.class)); in postNotifications()
DNotificationIntentReceiver.java29 public class NotificationIntentReceiver extends BroadcastReceiver { class