Lines Matching refs:PendingIntent
15 <li><a href="#DirectEntry">Set up a regular activity PendingIntent</a></li>
16 <li><a href="#ExtendedNotification">Set up a special activity PendingIntent</a></li>
64 <h2 id="DirectEntry">Set Up a Regular Activity PendingIntent</h2>
66 To set up a {@link android.app.PendingIntent} that starts a direct entry
104 // Gets a PendingIntent containing the entire back stack
105 PendingIntent resultPendingIntent =
106 stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
115 <h2 id="ExtendedNotification">Set Up a Special Activity PendingIntent</h2>
123 and create the {@link android.app.PendingIntent} by calling
124 {@link android.app.PendingIntent#getActivity getActivity()}:
188 Create a {@link android.app.PendingIntent} from the {@link android.content.Intent}
189 by calling {@link android.app.PendingIntent#getActivity getActivity()}.
190 You can then use this {@link android.app.PendingIntent} as the argument to
207 // Creates the PendingIntent
208 PendingIntent notifyIntent =
209 PendingIntent.getActivity(
213 PendingIntent.FLAG_UPDATE_CURRENT
216 // Puts the PendingIntent into the notification builder