Home
last modified time | relevance | path

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

/frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
DNotificationTests.java220 Intent toastIntent = new Intent(context, ToastService.class); in getPendingIntent() local
221 toastIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in getPendingIntent()
222 toastIntent.setAction(ACTION_TOAST + ":" + text); // one per toast message in getPendingIntent()
223 toastIntent.putExtra("text", text); in getPendingIntent()
225 context, 58, toastIntent, PendingIntent.FLAG_UPDATE_CURRENT); in getPendingIntent()
/frameworks/base/docs/html/guide/topics/appwidgets/
Dindex.jd1220     Intent toastIntent = new Intent(context, StackWidgetProvider.class);
1224     toastIntent.setAction(StackWidgetProvider.TOAST_ACTION);
1225     toastIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetIds[i]);
1227     PendingIntent toastPendingIntent = PendingIntent.getBroadcast(context, 0, toastIntent,