HomeSort by relevance Sort by last modified time
    Searched refs:PendingIntent (Results 51 - 75 of 483) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java 20 import android.app.PendingIntent;
77 PendingIntent piDismiss = PendingIntent.getService(this, 0, dismissIntent, 0);
81 PendingIntent piSnooze = PendingIntent.getService(this, 0, snoozeIntent, 0);
115 PendingIntent resultPendingIntent =
116 PendingIntent.getActivity(
120 PendingIntent.FLAG_UPDATE_CURRENT
  /frameworks/base/telephony/java/com/android/internal/telephony/
IMms.aidl 19 import android.app.PendingIntent;
39 * @param sentIntent if not NULL this <code>PendingIntent</code> is
43 String locationUrl, in Bundle configOverrides, in PendingIntent sentIntent);
56 * @param downloadedIntent if not NULL this <code>PendingIntent</code> is
61 in PendingIntent downloadedIntent);
170 * @param sentIntent if not NULL this <code>PendingIntent</code> is
174 in Bundle configOverrides, in PendingIntent sentIntent);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SchedulerService.java 20 import android.app.PendingIntent;
33 "Scheduler Test running", PendingIntent.getActivity(this, 0,
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
MockAlarmManager.java 19 import android.app.PendingIntent;
41 public void set(int actualAlarmType, long actualAlarmTime, PendingIntent operation) {
  /packages/apps/DeskClock/src/com/android/alarmclock/
AnalogAppWidgetProvider.java 22 import android.app.PendingIntent;
44 PendingIntent.getActivity(context, 0,
  /packages/services/Telephony/src/com/android/phone/
HfaService.java 19 import android.app.PendingIntent;
40 final PendingIntent otaResponseIntent = intent.getParcelableExtra(
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
UpdateRecommendationsService.java 18 import android.app.PendingIntent;
80 private PendingIntent buildPendingIntent(Movie movie) {
88 // PendingIntent
91 PendingIntent intent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
  /developers/build/prebuilts/gradle/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java 21 import android.app.PendingIntent;
53 PendingIntent intent = PendingIntent.getActivity(this, 0, i,
54 PendingIntent.FLAG_UPDATE_CURRENT);
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
PlaylistItem.java 19 import android.app.PendingIntent;
33 private final PendingIntent mUpdateReceiver;
41 public PlaylistItem(String qid, String iid, Uri uri, String mime, PendingIntent pi) {
86 public PendingIntent getUpdateReceiver() {
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
PlaylistItem.java 19 import android.app.PendingIntent;
33 private final PendingIntent mUpdateReceiver;
41 public PlaylistItem(String qid, String iid, Uri uri, String mime, PendingIntent pi) {
86 public PendingIntent getUpdateReceiver() {
  /developers/samples/android/notification/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java 21 import android.app.PendingIntent;
53 PendingIntent intent = PendingIntent.getActivity(this, 0, i,
54 PendingIntent.FLAG_UPDATE_CURRENT);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
PlaylistItem.java 19 import android.app.PendingIntent;
33 private final PendingIntent mUpdateReceiver;
41 public PlaylistItem(String qid, String iid, Uri uri, String mime, PendingIntent pi) {
86 public PendingIntent getUpdateReceiver() {
  /development/samples/browseable/CustomNotifications/src/com.example.android.customnotifications/
MainActivity.java 21 import android.app.PendingIntent;
53 PendingIntent intent = PendingIntent.getActivity(this, 0, i,
54 PendingIntent.FLAG_UPDATE_CURRENT);
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
PlaylistItem.java 19 import android.app.PendingIntent;
33 private final PendingIntent mUpdateReceiver;
41 public PlaylistItem(String qid, String iid, Uri uri, String mime, PendingIntent pi) {
86 public PendingIntent getUpdateReceiver() {
  /frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
WakeLoopService.java 20 import android.app.PendingIntent;
83 PendingIntent pi = PendingIntent.getBroadcast(this, 0, wakupIntent,
84 PendingIntent.FLAG_UPDATE_CURRENT);
  /cts/tests/tests/app/src/android/app/cts/
NotificationManagerTest.java 21 import android.app.PendingIntent;
75 final PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
77 + "notification ", pendingIntent);
  /developers/build/prebuilts/gradle/BasicNotifications/Application/src/main/java/com/example/android/basicnotifications/
MainActivity.java 5 import android.app.PendingIntent;
37 * The intent needs to be packaged into a {@link android.app.PendingIntent} so that the
42 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
62 builder.setContentIntent(pendingIntent);
  /developers/build/prebuilts/gradle/RepeatingAlarm/Application/src/main/java/com/example/android/repeatingalarm/
RepeatingAlarmFragment.java 20 import android.app.PendingIntent;
56 // it's necessary to wrap it in a PendingIntent. Providing a different process with
57 // a PendingIntent gives that other process permission to fire the intent that this
59 // Also, this code creates a PendingIntent to start an Activity. To create a
61 PendingIntent pendingIntent = PendingIntent.getActivity(getActivity(), REQUEST_CODE,
90 FIFTEEN_SEC_MILLIS, pendingIntent);
  /developers/samples/android/background/alarms/RepeatingAlarm/Application/src/main/java/com/example/android/repeatingalarm/
RepeatingAlarmFragment.java 20 import android.app.PendingIntent;
56 // it's necessary to wrap it in a PendingIntent. Providing a different process with
57 // a PendingIntent gives that other process permission to fire the intent that this
59 // Also, this code creates a PendingIntent to start an Activity. To create a
61 PendingIntent pendingIntent = PendingIntent.getActivity(getActivity(), REQUEST_CODE,
90 FIFTEEN_SEC_MILLIS, pendingIntent);
  /developers/samples/android/notification/BasicNotifications/Application/src/main/java/com/example/android/basicnotifications/
MainActivity.java 5 import android.app.PendingIntent;
37 * The intent needs to be packaged into a {@link android.app.PendingIntent} so that the
42 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
62 builder.setContentIntent(pendingIntent);
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmActivity.java 21 import android.app.PendingIntent;
47 private PendingIntent mAlarmSender;
62 // Create a PendingIntent to trigger a startService() for AlarmService
63 mAlarmSender = PendingIntent.getService( // set up an intent for a call to a service
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java 21 import android.app.PendingIntent;
108 // The PendingIntent to launch our activity if the user selects this notification
109 PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServerService.java 20 import android.app.PendingIntent;
76 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
84 setContentIntent(pendingIntent).
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
SimpleWakefulController.java 23 import android.app.PendingIntent;
54 PendingIntent sender = PendingIntent.getBroadcast(SimpleWakefulController.this,
  /development/samples/browseable/BasicNotifications/src/com.example.android.basicnotifications/
MainActivity.java 5 import android.app.PendingIntent;
37 * The intent needs to be packaged into a {@link android.app.PendingIntent} so that the
42 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
62 builder.setContentIntent(pendingIntent);

Completed in 795 milliseconds

1 23 4 5 6 7 8 91011>>