Fixed
Status Update
Comments
jb...@google.com <jb...@google.com> #2
ch...@beyls.net <ch...@beyls.net> #3
After update to Fragments 1.2.0-alpha01, it seems the same exception still happens (Also tried update appcompat:1.1.0-rc01)
The latest example project was attached
The latest example project was attached
il...@google.com <il...@google.com> #4
Sorry, <ma...@cyberagent.co.jp> is also my mail.
jb...@google.com <jb...@google.com>
ap...@google.com <ap...@google.com> #5
Thanks for confirming, I was able to reproduce your issue.
jb...@google.com <jb...@google.com> #6
Project: platform/frameworks/support
Branch: androidx-master-dev
commit e6ce39f90140f19068852a99713e19680ff20559
Author: Ian Lake <ilake@google.com>
Date: Wed Jul 24 14:30:55 2019
Remove cancelled postponed transactions when popped
When popping a postponed fragment transaction,
remove the transaction from the list of postponed
transactions when cancelling it.
This prevents cases where we attempt to execute
the postponed transaction despite it already
being cancelled.
Test: new test passes
BUG: 138251858
Change-Id: Ie2f23923ad761a35c43df8716e46e51183dbc010
M fragment/fragment/src/androidTest/java/androidx/fragment/app/PrimaryNavFragmentTest.kt
M fragment/fragment/src/main/java/androidx/fragment/app/FragmentManager.java
https://android-review.googlesource.com/1090762
https://goto.google.com/android-sha1/e6ce39f90140f19068852a99713e19680ff20559
Branch: androidx-master-dev
commit e6ce39f90140f19068852a99713e19680ff20559
Author: Ian Lake <ilake@google.com>
Date: Wed Jul 24 14:30:55 2019
Remove cancelled postponed transactions when popped
When popping a postponed fragment transaction,
remove the transaction from the list of postponed
transactions when cancelling it.
This prevents cases where we attempt to execute
the postponed transaction despite it already
being cancelled.
Test: new test passes
BUG: 138251858
Change-Id: Ie2f23923ad761a35c43df8716e46e51183dbc010
M fragment/fragment/src/androidTest/java/androidx/fragment/app/PrimaryNavFragmentTest.kt
M fragment/fragment/src/main/java/androidx/fragment/app/FragmentManager.java
ch...@beyls.net <ch...@beyls.net> #7
pr...@google.com <pr...@google.com> #8
Turns out that this was actually a more serious, long standing issue with Fragments that was just exposed by more recent changes.
We'll be releasing a new 1.1.0-rc04 for Fragments with this fix and update Navigation 2.1 to depend on it.
We'll be releasing a new 1.1.0-rc04 for Fragments with this fix and update Navigation 2.1 to depend on it.
pr...@google.com <pr...@google.com> #9
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.transition:transition:1.6.0-alpha01
Description
Version used: 1.7.0
Devices/Android versions reproduced on: Pixel 7 running Android 14
When enabling predictive back animations, the predictive back gesture now also animates transitions between fragments since Fragment 1.7.0 (in combination with the AndroidX Transition library version 1.5.0).
However, if the Fragment transition includes a shared element that uses the ChangeTransform() transition, then the animation breaks when triggered by the back gesture.
Display also ends up empty if the transition is cancelled, then both fragments are shown at the same time when navigating back. See the attached video for a demonstration.
A sample project to reproduce the issue can be cloned from: