Fixed
Status Update
Comments
jb...@google.com <jb...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit 4afc4492f3579404fee737928dd76b858d13b103
Author: Jeremy Woods <jbwoods@google.com>
Date: Thu Jun 13 17:48:24 2024
Ensure that z-order considers predictive back
Currently, when doing a predictive back gesture with Navigation Compose,
the z-order does not consider the predictive back as a pop and as a
result the incoming screen is on top of the screen being popped. This is
incorrect.
We should ensure we consider predictive back for z-order the same way we
do for the enter and exit transitions.
RelNote: "When using Predictive back with Navigation Compose, the
destination being popped will now correctly animate on top of the incoming destination."
Test: added ScreenShotTest
Bug: 345993681
Change-Id: I2077b399fc9bc9a846da6ed17d63d002c8e8122f
M navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostScreenShotTest.kt
M navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt
https://android-review.googlesource.com/3132153
Branch: androidx-main
commit 4afc4492f3579404fee737928dd76b858d13b103
Author: Jeremy Woods <jbwoods@google.com>
Date: Thu Jun 13 17:48:24 2024
Ensure that z-order considers predictive back
Currently, when doing a predictive back gesture with Navigation Compose,
the z-order does not consider the predictive back as a pop and as a
result the incoming screen is on top of the screen being popped. This is
incorrect.
We should ensure we consider predictive back for z-order the same way we
do for the enter and exit transitions.
RelNote: "When using Predictive back with Navigation Compose, the
destination being popped will now correctly animate on top of the incoming destination."
Test: added ScreenShotTest
Bug: 345993681
Change-Id: I2077b399fc9bc9a846da6ed17d63d002c8e8122f
M navigation/navigation-compose/src/androidTest/java/androidx/navigation/compose/NavHostScreenShotTest.kt
M navigation/navigation-compose/src/main/java/androidx/navigation/compose/NavHost.kt
jb...@google.com <jb...@google.com> #3
This has been fixed internally and will be in the Navigation 2.8.0-rc01
release.
pr...@google.com <pr...@google.com> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.navigation:navigation-compose:2.8.0-beta04
Description
Component used: Navigation
Version used: 2.8.0-beta02
Devices/Android versions reproduced on:
Details
This issue occurs when doing simple navigation using compose navigation to build a stack and then pop items using the back gesture with predictive back.
When a back gesture is in progress, sometimes the predictive back transition animation incorrectly shows the destination that will be popped behind the next destination that will be moved to top of the stack.
This does not seem to occur when the same transitions are triggered without a back gesture, either by device back button, or by programmatically popping the stack.
I haven't narrowed down the exact scenario this does and doesn't occur in, but it has been highly reproducible. See attached recording of the below sample app.
Sample project
https://github.com/MrNope/navigation-compose-animation-zindex-bug-demo
Steps to reproduce in sample project:
Expected result
Actual result