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
/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
,
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationShowcaseActivity.java
145
Intent
toastIntent
= new Intent(context, ToastFeedbackActivity.class);
146
toastIntent
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
147
toastIntent
.putExtra("text", s);
149
context, 58,
toastIntent
, PendingIntent.FLAG_CANCEL_CURRENT);
Completed in 513 milliseconds