Home
last modified time | relevance | path

Searched refs:toastIntent (Results 1 – 2 of 2) sorted by relevance

/platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
DNotificationHelper.java253 Intent toastIntent = new Intent(context, ToastService.class); in getPendingIntent() local
254 toastIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in getPendingIntent()
255 toastIntent.setAction("toast:" + text); in getPendingIntent()
256 toastIntent.putExtra("text", text); in getPendingIntent()
261 toastIntent, in getPendingIntent()
/platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
DNotificationHelper.java343 Intent toastIntent = new Intent(context, ToastService.class); in getPendingIntent() local
344 toastIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in getPendingIntent()
345 toastIntent.setAction(ACTION_TOAST + ":" + text); // one per toast message in getPendingIntent()
346 toastIntent.putExtra("text", text); in getPendingIntent()
348 context, 58, toastIntent, in getPendingIntent()