Status Update
Comments
il...@google.com <il...@google.com> #2
Generally, duplicating the same destination in multiple graphs is undefined behavior - for example, if both destinations had a navDeepLink
associated with it, what the back stack should be when that deep link is triggered is invariably going to be confusing - that's why you should only define a destination at most once - e.g., a shared destination should not be part of both graphs, but be moved up another level so that both graphs can access it.
However, in the cases where you do define the same destination multiple times (e.g., to make it easier to work with multiple back stacks or other cases where you may be depending on a specific hierarchy
), we should always prioritize the copy from your current graph - e.g., if you are in the HomeNavRoute
graph, we should use the copy in that graph (or any of its subgraphs) before looking in any other higher level graph. That would ensure that the hierarchy
has as few changes as possible.
We'll see if we can make that change in NavController.
ap...@google.com <ap...@google.com> #3
Branch: androidx-main
commit 52f5c98ca6820cdeb8cfb071278929746ce7d527
Author: Clara Fok <clarafok@google.com>
Date: Wed Jul 31 13:49:58 2024
Add matchDeepLinkComprehensive helper
Refactor current uses of matchDeepLink to leverage new internal helper
Test: existing tests
Bug: 352006850
Change-Id: I48964c4d83bc62fcdc0ff995597e4289a0f7ac19
M navigation/navigation-common/src/main/java/androidx/navigation/NavDestination.kt
M navigation/navigation-common/src/main/java/androidx/navigation/NavGraph.kt
ap...@google.com <ap...@google.com> #4
Branch: androidx-main
commit f397b74f2c8620c3ecd33253af117b6246931d1d
Author: Clara Fok <clarafok@google.com>
Date: Wed Jul 31 14:31:23 2024
Refactor navigate to use matchDeepLinkComprehensive
Now when we search for navigate target, instead of starting from base graph, we start from the closest parent NavGraph of current destination. This ensures that when navigating to shared/duplicated destinations, the one closest to the current destination will be prioritized.
Matching that only needs to recurse downwards (match children) will keep using the existing matchDeepLink function. Matching that needs to also recurse up the parents will directly call matchDeepLinkComprehensive. The latter has only been applied to uses cases where we used to match starting from _graph.
Test: ./gradlew navigation:navigation-runtime:cC
Bug: 352006850
Relnote: "When navigating to duplicate or shared destinations, navigation will prioritize the destination from current graph"
Change-Id: Ic89a41d2a54f36fca6c41f2f7ea948f8c13b2bd5
M navigation/navigation-common/src/main/java/androidx/navigation/NavGraph.kt
M navigation/navigation-runtime/src/androidTest/java/androidx/navigation/NavControllerRouteTest.kt
M navigation/navigation-runtime/src/main/java/androidx/navigation/NavController.kt
cl...@google.com <cl...@google.com> #5
Fixed internally and will be available in navigation 2.8.0-beta07
.
pr...@google.com <pr...@google.com> #6
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.navigation:navigation-common:2.8.0-beta07
androidx.navigation:navigation-runtime:2.8.0-beta07
Description
Component used: Navigation Version used: 2.8.0-beta04 Devices/Android versions reproduced on: all
Duplicate destinations in a navigation graph are allowed but can lead to indeterminate behavior at run time. Consider the following code which creates two nested nav graphs that share a destination:
DetailRoute
.If you navigate from
ListRoute
toDetailRoute
it is undetermined whether the resulting destination will have a parent ofHomeNavRoute
orListNavRoute
. If we follow the rule of "whichever destination is defined first in the navigation graph will be used" then destination with parentListNavRoute
should be used, however, in my tests,DetailRoute
's parent isHomeNavRoute
(which is defined second in the nav graph).Perhaps adding a duplicate destination should be a compile-time error or warning.