Searched refs:toastIntent (Results 1 – 2 of 2) sorted by relevance
253 Intent toastIntent = new Intent(context, ToastService.class); in getPendingIntent() local254 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()
343 Intent toastIntent = new Intent(context, ToastService.class); in getPendingIntent() local344 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()