HomeSort by relevance Sort by last modified time
    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 68 Intent toastIntent = new Intent(this, ToastFeedbackActivity.class);
69 toastIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
70 toastIntent.putExtra("text", s);
72 this, 58, toastIntent, PendingIntent.FLAG_CANCEL_CURRENT);

Completed in 55 milliseconds