HomeSort by relevance Sort by last modified time
    Searched defs:ToastService (Results 1 - 4 of 4) sorted by null

  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ToastService.java 27 public class ToastService extends IntentService {
29 private static final String TAG = "ToastService";
35 public ToastService() {
38 public ToastService(String name) {
56 Toast.makeText(ToastService.this, text, Toast.LENGTH_LONG).show();
65 Intent toastIntent = new Intent(context, ToastService.class);
  /frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
NotificationTests.java 150 .setContentIntent(ToastService.getPendingIntent(context, "Clicked on bigText"))
170 .setContentIntent(ToastService.getPendingIntent(context, "Clicked on Upload"))
183 public static class ToastService extends IntentService {
185 private static final String TAG = "ToastService";
191 public ToastService() {
194 public ToastService(String name) {
212 Toast.makeText(ToastService.this, text, Toast.LENGTH_LONG).show();
220 Intent toastIntent = new Intent(context, ToastService.class);
284 ToastService.getPendingIntent(mContext, "Clicked on Answer"))
286 ToastService.getPendingIntent(mContext, "Clicked on Ignore")
    [all...]
  /platform_testing/tests/androidbvt/src/com/android/androidbvt/
SysUINotificationShadeTests.java 236 R.drawable.stat_notify_email, "Reply", ToastService.getPendingIntent(mContext,
278 public static class ToastService extends IntentService {
279 private static final String TAG = "ToastService";
283 public ToastService() {
287 public ToastService(String name) {
304 Toast.makeText(ToastService.this, text, Toast.LENGTH_LONG).show();
312 Intent toastIntent = new Intent(context, ToastService.class);
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationHelper.java 322 R.drawable.stat_notify_email, "Reply", ToastService.getPendingIntent(mContext,
340 public static class ToastService extends IntentService {
341 private static final String TAG = "ToastService";
345 public ToastService() {
349 public ToastService(String name) {
366 Toast.makeText(ToastService.this, text, Toast.LENGTH_LONG).show();
374 Intent toastIntent = new Intent(context, ToastService.class);

Completed in 1930 milliseconds