Status Update
Comments
ja...@google.com <ja...@google.com>
il...@google.com <il...@google.com>
il...@google.com <il...@google.com> #4
Reproducible with navigation-compose:2.4.0-beta02, without hilt.
th...@outlook.com <th...@outlook.com> #5
Could be related to this change
api("androidx.navigation:navigation-runtime:2.4.0-alpha10")
il...@google.com <il...@google.com> #7
See also these relevant tickets:
so it appears this is not a Wear Compose specific issue.
ap...@google.com <ap...@google.com> #8
Further info - if we revert the change mentioned in
il...@google.com <il...@google.com> #9
Calling LocalOwnersProvider
on a NavBackStackEntry
that has either never been created (unlikely, given that a NavBackStackEntry
is moved to CREATED
before it is given to any Navigator) or that has already been moved to destroyed (most likely) is indicative of a problem in SwipeDismissableNavHost
and how it handles onTransitionComplete()
- you should only be marking a transition as complete after that / synchronized with the removal of that destination from your composable hierarchy - thus ensuring that LocalOwnersProvider
won't be called on that particular NavBackStackEntry
ever again.
NavHost
does not run into this issue as it does handle transitions correctly, so this certainly seems to be something specific with SwipeDismissableNavHost
.
th...@outlook.com <th...@outlook.com> #10
Branch: androidx-main
commit 4a229ca6ef4cef2d5679334737290d71fe027d7b
Author: stevebower <stevebower@google.com>
Date: Wed Dec 01 13:04:01 2021
Do not show navigation content until Lifecycle state CREATED.
aosp/1871175 changed lifecycle state handling so that a
NavBackStackEntry starts in state INITIALIZED. Given that
WearNavigator pushes destinations without transitions,
SwipeDismissableNavHost must no longer show content until the
entry has reached at least state CREATED. Fixing this allows
us to build against latest navigation libraries.
Test: androidx.wear.compose.navigation
Bug: 207328687
Relnote: "Fixed an issue where NavBackStackEntry has lifecycle
state INITIALIZED and should not be shown until it has
lifecycle state CREATED."
Change-Id: I40a2ba51ec8805007dd11f531a5807e60f595a0d
M wear/compose/compose-navigation/build.gradle
M wear/compose/compose-navigation/src/main/java/androidx/wear/compose/navigation/SwipeDismissableNavHost.kt
Description
I have a
PreferenceScreen
with aDialogPreference
that opens aPreferenceDialogFragmentCompat
when there is being clicked on. TheDialogPreference
has a custom dialogLayoutResource in which I set a newPreferenceFragmentCompat
through xml using the<FragmentContainerView/>
tag. On clicking theDialogPreference
, the crash posted below occurs.This crash does not occur when commenting out
<FragmentContainerView/>
I was able to workaround this issue by using the following code in
PreferenceDialogFragmentCompat
:A sample project demonstrating the isue can be found here