Fixed
Status Update
Comments
jo...@google.com <jo...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit e098f49838f5505b77c47d0a88b675430338fc77
Author: Eugene Susla <eugenesusla@google.com>
Date: Tue Feb 04 16:42:20 2020
Allow conditional startActivityForResult in ActivityResultContract
This adds an extra superclass for ActivityResultContract, that allows
customizing the action to start the activity.
This allows the common "short-circuit" behavior.
Also allows us to get rid of permissions-specific APIs.
Bug: 137198065
Bug: 151110799
Test: use the testapp to manually trigger requests,
rotating phone in the process.
Change-Id: I9d1e6f5be70406194ea30a43980389fc985125f3
M activity/activity/api/1.2.0-alpha03.txt
M activity/activity/api/current.txt
M activity/activity/api/public_plus_experimental_1.2.0-alpha03.txt
M activity/activity/api/public_plus_experimental_current.txt
M activity/activity/api/restricted_1.2.0-alpha03.txt
M activity/activity/api/restricted_current.txt
M activity/activity/src/main/java/androidx/activity/ComponentActivity.java
M activity/activity/src/main/java/androidx/activity/result/ActivityResultRegistry.java
M activity/activity/src/main/java/androidx/activity/result/contract/ActivityResultContract.java
M activity/activity/src/main/java/androidx/activity/result/contract/ActivityResultContracts.java
https://android-review.googlesource.com/1238800
Branch: androidx-master-dev
commit e098f49838f5505b77c47d0a88b675430338fc77
Author: Eugene Susla <eugenesusla@google.com>
Date: Tue Feb 04 16:42:20 2020
Allow conditional startActivityForResult in ActivityResultContract
This adds an extra superclass for ActivityResultContract, that allows
customizing the action to start the activity.
This allows the common "short-circuit" behavior.
Also allows us to get rid of permissions-specific APIs.
Bug: 137198065
Bug: 151110799
Test: use the testapp to manually trigger requests,
rotating phone in the process.
Change-Id: I9d1e6f5be70406194ea30a43980389fc985125f3
M activity/activity/api/1.2.0-alpha03.txt
M activity/activity/api/current.txt
M activity/activity/api/public_plus_experimental_1.2.0-alpha03.txt
M activity/activity/api/public_plus_experimental_current.txt
M activity/activity/api/restricted_1.2.0-alpha03.txt
M activity/activity/api/restricted_current.txt
M activity/activity/src/main/java/androidx/activity/ComponentActivity.java
M activity/activity/src/main/java/androidx/activity/result/ActivityResultRegistry.java
M activity/activity/src/main/java/androidx/activity/result/contract/ActivityResultContract.java
M activity/activity/src/main/java/androidx/activity/result/contract/ActivityResultContracts.java
li...@google.com <li...@google.com> #3
This has been fixed internally and will be available in the Activity 1.2.0-alpha03 release.
jo...@google.com <jo...@google.com> #4
The fix will be in the Jetpack version of the library, in the meantime, please use the workaround described in #3.
sh...@google.com <sh...@google.com>
ag...@gmail.com <ag...@gmail.com> #5
Try reviewing the sequence in a group, from opening of an app Ascreen states ON_CREATE then ends in ON_RESUME.
Second group is (push b), Bscreen states ON_CREATE in first and close or ends states Bscreen ON_RESUME.
Third one states Cscreen in ON_CREATE also ends states with ON_RESUME.
So in (push c & b) states first at Bscreen in ON_CREATE, then it will states in ON_RESUME, even they are state in a middle part was ON_DESTROY, it will back in a ON_RESUME state at END of the bug.
Therefore, a rotation of sequence in a bug was sequentially.
Hope this help... 😇
Second group is (push b), Bscreen states ON_CREATE in first and close or ends states Bscreen ON_RESUME.
Third one states Cscreen in ON_CREATE also ends states with ON_RESUME.
So in (push c & b) states first at Bscreen in ON_CREATE, then it will states in ON_RESUME, even they are state in a middle part was ON_DESTROY, it will back in a ON_RESUME state at END of the bug.
Therefore, a rotation of sequence in a bug was sequentially.
Hope this help... 😇
Description
Situation
Let's say we have a screen stack of
[A, B, C]
.A
is the root, andC
is the top.B
is pushed byA
for some result viascreenManager.pushForResult()
. So isC
byB
.When
C
set the result andfinish()
itself,B
also set that result andfinish()
itself to relay the result toA
.Now we have
[A]
andA
is resumed properly.C
andB
is destroyed as well.Problem
B
's lifecycle is resumed again.Log