Lines Matching refs:intent

42     /** Extra added to a clip data intent object to hold the text results bundle. */
45 /** Extra added to a clip data intent object to hold the data results bundle. */
249 * RemoteInput.getDataResultsFromIntent(intent, REMOTE_INPUT_KEY);
255 * @param intent The intent object that fired in response to an action or content intent
260 Intent intent, String remoteInputResultKey) {
261 return IMPL.getDataResultsFromIntent(intent, remoteInputResultKey);
265 * Get the remote input text results bundle from an intent. The returned Bundle will
269 * @param intent The intent object that fired in response to an action or content intent
272 public static Bundle getResultsFromIntent(Intent intent) {
273 return IMPL.getResultsFromIntent(intent);
277 * Populate an intent object with the results gathered from remote input. This method
279 * pending intent.
281 * @param intent The intent to add remote inputs to. The {@link android.content.ClipData}
282 * field of the intent will be modified to contain the results.
287 public static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent,
289 IMPL.addResultsToIntent(remoteInputs, intent, results);
295 * @param intent The intent to add remote input results to. The
296 * {@link android.content.ClipData} field of the intent will be
300 public static void addDataResultToIntent(RemoteInput remoteInput, Intent intent,
302 IMPL.addDataResultToIntent(remoteInput, intent, results);
308 Bundle getResultsFromIntent(Intent intent);
309 Map<String, Uri> getDataResultsFromIntent(Intent intent, String remoteInputResultKey);
310 void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent,
312 void addDataResultToIntent(RemoteInput remoteInput, Intent intent,
318 public Bundle getResultsFromIntent(Intent intent) {
325 Intent intent, String remoteInputResultKey) {
331 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
336 public void addDataResultToIntent(RemoteInput remoteInput, Intent intent,
345 public Bundle getResultsFromIntent(Intent intent) {
346 return RemoteInputCompatJellybean.getResultsFromIntent(intent);
351 Intent intent, String remoteInputResultKey) {
353 intent, remoteInputResultKey);
357 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
358 RemoteInputCompatJellybean.addResultsToIntent(remoteInputs, intent, results);
362 public void addDataResultToIntent(RemoteInput remoteInput, Intent intent,
364 RemoteInputCompatJellybean.addDataResultToIntent(remoteInput, intent, results);
371 public Bundle getResultsFromIntent(Intent intent) {
372 return RemoteInputCompatApi20.getResultsFromIntent(intent);
377 Intent intent, String remoteInputResultKey) {
378 return RemoteInputCompatApi20.getDataResultsFromIntent(intent, remoteInputResultKey);
382 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
383 RemoteInputCompatApi20.addResultsToIntent(remoteInputs, intent, results);
387 public void addDataResultToIntent(RemoteInput remoteInput, Intent intent,
389 RemoteInputCompatApi20.addDataResultToIntent(remoteInput, intent, results);