OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toastIntent
(Results
1 - 2
of
2
) sorted by null
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ToastService.java
64
Intent
toastIntent
= new Intent(context, ToastService.class);
65
toastIntent
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
66
toastIntent
.setAction(ACTION_TOAST + ":" + text); // one per toast message
67
toastIntent
.putExtra("text", text);
69
context, 58,
toastIntent
, PendingIntent.FLAG_UPDATE_CURRENT);
/development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java
82
Intent
toastIntent
= new Intent(context, StackWidgetProvider.class);
83
toastIntent
.setAction(StackWidgetProvider.TOAST_ACTION);
84
toastIntent
.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetIds[i]);
86
PendingIntent toastPendingIntent = PendingIntent.getBroadcast(context, 0,
toastIntent
,
Completed in 33 milliseconds