Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit cc18d5a3f49e7964fd627eebb114bb38b8f5d63a
Author: Jeremy Woods <jbwoods@google.com>
Date: Thu Apr 02 15:41:21 2020
Add StartIntentSenderForResult ActivityResultContract
Added an ActivityResultContract to allows developers to
startIntentSenderForResult. The contract takes an IntentSenderRequest
object that contains the various parameters that would be passed to
startIntentSenderForResult. The output of this contract is an
ActivityResult object.
Test: coming soon
Bug: 153007517
RelNote: "Added a contract that can call startIntentSenderForResult to
the ActivityResult APIs."
Change-Id: I44e58ceed15d7cbead4100b0dbbd6053beb0c2b8
M activity/activity/api/1.2.0-alpha04.txt
M activity/activity/api/current.txt
M activity/activity/api/public_plus_experimental_1.2.0-alpha04.txt
M activity/activity/api/public_plus_experimental_current.txt
M activity/activity/api/restricted_1.2.0-alpha04.txt
M activity/activity/api/restricted_current.txt
M activity/activity/src/main/java/androidx/activity/ComponentActivity.java
A activity/activity/src/main/java/androidx/activity/result/IntentSenderRequest.java
M activity/activity/src/main/java/androidx/activity/result/contract/ActivityResultContracts.java
https://android-review.googlesource.com/1278118
Branch: androidx-master-dev
commit cc18d5a3f49e7964fd627eebb114bb38b8f5d63a
Author: Jeremy Woods <jbwoods@google.com>
Date: Thu Apr 02 15:41:21 2020
Add StartIntentSenderForResult ActivityResultContract
Added an ActivityResultContract to allows developers to
startIntentSenderForResult. The contract takes an IntentSenderRequest
object that contains the various parameters that would be passed to
startIntentSenderForResult. The output of this contract is an
ActivityResult object.
Test: coming soon
Bug: 153007517
RelNote: "Added a contract that can call startIntentSenderForResult to
the ActivityResult APIs."
Change-Id: I44e58ceed15d7cbead4100b0dbbd6053beb0c2b8
M activity/activity/api/1.2.0-alpha04.txt
M activity/activity/api/current.txt
M activity/activity/api/public_plus_experimental_1.2.0-alpha04.txt
M activity/activity/api/public_plus_experimental_current.txt
M activity/activity/api/restricted_1.2.0-alpha04.txt
M activity/activity/api/restricted_current.txt
M activity/activity/src/main/java/androidx/activity/ComponentActivity.java
A activity/activity/src/main/java/androidx/activity/result/IntentSenderRequest.java
M activity/activity/src/main/java/androidx/activity/result/contract/ActivityResultContracts.java
jb...@google.com <jb...@google.com> #3
This has been added internally and will be available in the Activity 1.2.0-alpha04 release.
Description
Component used: Activity Version used: 1.2.0-alpha03
Along with , there's a separate API for that uses the .
startActivityForResult()
startIntentSenderForResult()
IntentSender
returned byPendingResult.getIntentSender()
Since this is used by APIs such as and the result it also delivered to the activity's
ResolvableApiException
onActivityResult()
, it would be nice if there was a contract available (similar toStartActivityForResult
) that would make it possible to pass anIntentSender
(and perhaps all of those optional method parameters) in as input.