Home
last modified time | relevance | path

Searched refs:AlertNotificationHelper (Results 1 – 4 of 4) sorted by relevance

/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/radio/
DAlertNotificationReceiver.java37 int notificationId = intent.getIntExtra(AlertNotificationHelper.EXTRA_KEY_NOTIFICATION_ID, in onReceive()
38 AlertNotificationHelper.INVALID_NOTIFICATION_ID); in onReceive()
39 if (notificationId == AlertNotificationHelper.INVALID_NOTIFICATION_ID) { in onReceive()
48 if (AlertNotificationHelper.ACTION_DISMISS.equals(action)) { in onReceive()
50 } else if (AlertNotificationHelper.ACTION_SNOOZE.equals(action)) { in onReceive()
51 String title = intent.getStringExtra(AlertNotificationHelper.EXTRA_KEY_TITLE); in onReceive()
52 String text = intent.getStringExtra(AlertNotificationHelper.EXTRA_KEY_TEXT); in onReceive()
53 long alertTimeMs = intent.getLongExtra(AlertNotificationHelper.EXTRA_KEY_ALERT_TIME_MS, in onReceive()
77 intent.setAction(AlertNotificationHelper.ACTION_NOTIFICATION); in createSnoozePendingIntent()
78 intent.putExtra(AlertNotificationHelper.EXTRA_KEY_NOTIFICATION_ID, notificationId); in createSnoozePendingIntent()
[all …]
DAlertSnoozeReceiver.java32 if (!AlertNotificationHelper.ACTION_NOTIFICATION.equals(action)) { in onReceive()
36 int notificationId = intent.getIntExtra(AlertNotificationHelper.EXTRA_KEY_NOTIFICATION_ID, in onReceive()
37 AlertNotificationHelper.INVALID_NOTIFICATION_ID); in onReceive()
38 if (notificationId == AlertNotificationHelper.INVALID_NOTIFICATION_ID) { in onReceive()
46 String title = intent.getStringExtra(AlertNotificationHelper.EXTRA_KEY_TITLE); in onReceive()
47 String text = intent.getStringExtra(AlertNotificationHelper.EXTRA_KEY_TEXT); in onReceive()
48 long alertTimeMs = intent.getLongExtra(AlertNotificationHelper.EXTRA_KEY_ALERT_TIME_MS, in onReceive()
51 AlertNotificationHelper.createRadioAlertNotification(context, title, text, alertTimeMs, in onReceive()
DAlertNotificationHelper.java30 final class AlertNotificationHelper { class
32 private AlertNotificationHelper() { in AlertNotificationHelper() method in AlertNotificationHelper
DRadioTunerFragment.java126 AlertNotificationHelper.IMPORTANCE_ALERT_ID, "Importance High", in onCreateView()
286 AlertNotificationHelper.createRadioAlertNotification(mActivityContext, alertTitle, in handleRadioAlert()