HomeSort by relevance Sort by last modified time
    Searched full:pendingintent (Results 151 - 175 of 851) sorted by null

1 2 3 4 5 67 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 26 import android.app.PendingIntent;
114 // The PendingIntent to launch our activity if the user selects this
118 PendingIntent contentIntent = PendingIntent.getActivities(this, 0,
119 makeMessageIntentStack(this, from, message), PendingIntent.FLAG_CANCEL_CURRENT);
165 // The PendingIntent to launch our activity if the user selects this
173 PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
174 intent, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmService.java 25 import android.app.PendingIntent;
41 private PendingIntent mAlarmSender;
49 mAlarmSender = PendingIntent.getService(AlarmService.this,
StatusBarNotifications.java 24 import android.app.PendingIntent;
148 private PendingIntent makeMoodIntent(int moodId) {
149 // The PendingIntent to launch our activity if the user selects this
153 PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
155 PendingIntent.FLAG_UPDATE_CURRENT);
160 private PendingIntent makeDefaultIntent() {
183 // The PendingIntent to launch our activity if the user selects this
187 PendingIntent contentIntent = PendingIntent.getActivities(this, 0
    [all...]
LocalService.java 21 import android.app.PendingIntent;
103 // The PendingIntent to launch our activity if the user selects this notification
104 PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
  /frameworks/base/docs/html/sdk/api_diff/23/changes/
android.app.PendingIntent.html 10 android.app.PendingIntent
74 Class android.app.<A HREF="../../../../reference/android/app/PendingIntent.html" target="_top"><font size="+2"><code>PendingIntent</code></font></A>
86 <A NAME="android.app.PendingIntent.send_added(android.content.Context, int, android.content.Intent, android.app.PendingIntent.OnFinished, android.os.Handler, java.lang.String, android.os.Bundle)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/PendingIntent.html#send(android.content.Context, int, android.content.Intent, android.app.PendingIntent.OnFinished, android.os.Handler, java.lang.String, android.os.Bundle)" target="_top"><code>send</code></A>(<code>Context,</nobr> int<nobr>,</nobr> Intent<nobr>,</nobr> OnFinished<nobr>,</nobr> Handler<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
102 <A NAME="android.app.PendingIntent.FLAG_IMMUTABLE"></A>
103 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/app/PendingIntent.html#FLAG_IMMUTABLE" target="_top"><code>FLAG_IMMUTABLE</code></A></nobr>
constructors_index_changes.html 54 <nobr><A HREF="android.app.Notification.Action.html#android.app.Notification.Action.ctor_changed(int, java.lang.CharSequence, android.app.PendingIntent)" class="hiddenlink" target="rightframe">Notification.Action
55 (<code>int, CharSequence, PendingIntent</code>)</A></nobr>&nbsp;constructor<br>
56 <nobr><A HREF="android.app.Notification.Action.Builder.html#android.app.Notification.Action.Builder.ctor_changed(int, java.lang.CharSequence, android.app.PendingIntent)" class="hiddenlink" target="rightframe">Notification.Action.Builder
57 (<code>int, CharSequence, PendingIntent</code>)</A></nobr>&nbsp;constructor<br>
  /frameworks/base/tests/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
AlarmImpl.java 20 import android.app.PendingIntent;
53 PendingIntent pi = PendingIntent.getBroadcast(mContext, 0, wakupIntent, 0);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
SimpleWakefulController.java 23 import android.app.PendingIntent;
54 PendingIntent sender = PendingIntent.getBroadcast(SimpleWakefulController.this,
  /packages/apps/Dialer/src/com/android/dialer/calllog/
MissedCallNotifier.java 20 import android.app.PendingIntent;
238 private PendingIntent createCallLogPendingIntent() {
241 return PendingIntent.getActivity(
242 mContext, 0, contentIntent,PendingIntent.FLAG_UPDATE_CURRENT);
246 private PendingIntent createClearMissedCallsPendingIntent() {
249 return PendingIntent.getService(mContext, 0, intent, 0);
252 private PendingIntent createCallBackPendingIntent(String number) {
259 return PendingIntent.getService(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
262 private PendingIntent createSendSmsFromNotificationPendingIntent(String number)
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/activation/
SimActivationActivity.java 20 import android.app.PendingIntent;
21 import android.app.PendingIntent.CanceledException;
49 final PendingIntent response =
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationHelper.java 26 import android.app.PendingIntent;
169 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
174 .setContentIntent(pendingIntent).setVisibility(visibility)
184 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
373 public static PendingIntent getPendingIntent(Context context, String text) {
378 PendingIntent pi = PendingIntent.getService
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/recommendation/
UpdateRecommendationsService.java 22 import android.app.PendingIntent;
112 private PendingIntent buildPendingIntent(Movie movie, int id) {
121 // PendingIntent
124 return stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
  /developers/build/prebuilts/gradle/CustomNotifications/.google/
packaging.yaml 18 - android:android.app.PendingIntent
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
HeadsUpNotificationFragment.java 22 import android.app.PendingIntent;
126 PendingIntent fullScreenPendingIntent = PendingIntent.getActivity(getActivity(), 0,
127 push, PendingIntent.FLAG_CANCEL_CURRENT);
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
HeadsUpNotificationFragment.java 22 import android.app.PendingIntent;
126 PendingIntent fullScreenPendingIntent = PendingIntent.getActivity(getActivity(), 0,
127 push, PendingIntent.FLAG_CANCEL_CURRENT);
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 19 import android.app.PendingIntent;
86 PendingIntent toastPendingIntent = PendingIntent.getBroadcast(context, 0, toastIntent,
87 PendingIntent.FLAG_UPDATE_CURRENT);
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
HeadsUpNotificationFragment.java 22 import android.app.PendingIntent;
126 PendingIntent fullScreenPendingIntent = PendingIntent.getActivity(getActivity(), 0,
127 push, PendingIntent.FLAG_CANCEL_CURRENT);
  /frameworks/base/core/java/android/app/
IAlarmListener.aidl 23 * rather than a PendingIntent.
  /frameworks/base/core/java/android/net/
IConnectivityManager.aidl 19 import android.app.PendingIntent;
149 in PendingIntent operation);
151 void releasePendingNetworkRequest(in PendingIntent operation);
157 in PendingIntent operation);
  /frameworks/base/core/tests/notificationtests/src/android/app/
NotificationStressTest.java 114 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
124 .setContentIntent(pendingIntent)
  /frameworks/base/services/core/java/com/android/server/am/
AppTimeTracker.java 20 import android.app.PendingIntent;
35 private final PendingIntent mReceiver;
44 public AppTimeTracker(PendingIntent receiver) {
93 } catch (PendingIntent.CanceledException e) {
  /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);
  /frameworks/support/media-compat/jellybean-mr2/android/support/v4/media/
TransportMediatorJellybeanMR2.java 19 import android.app.PendingIntent;
90 PendingIntent mPendingIntent;
123 mPendingIntent = PendingIntent.getBroadcast(mContext, 0, mIntent,
124 PendingIntent.FLAG_CANCEL_CURRENT);
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/sms/
OmtpStandardMessageSender.java 19 import android.app.PendingIntent;
60 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
78 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
90 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
MyBroadcastReceiver.java 44 import android.app.PendingIntent;
246 final PendingIntent pendingIntent = PendingIntent.getService(context, 0, serviceIntent,
259 .setContentIntent(pendingIntent);
262 builder.setDeleteIntent(pendingIntent);
265 builder.setFullScreenIntent(pendingIntent, true);
268 bundle.putParcelable("Magnum P.I. (Pending Intent)", pendingIntent);
273 R.drawable.ic_notification, "ACTION", pendingIntent)
278 bundle.putParcelable("Magnum A.P.I. (Action Pending Intent)", pendingIntent);
    [all...]

Completed in 423 milliseconds

1 2 3 4 5 67 8 91011>>