我目前正在尝试将Navigation2.xml中的片段转换为Navigation.xml。我以为引用其他导航图可以但不能正常工作。如果有样本或有关在不同navigation.xml文件的片段之间进行转换的提示,我希望收到您的来信!
<!-- (root) navigation.xml -->
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_graph"
app:startDestination="@id/fragment">
<include app:graph="@navigation/included_graph" />
<fragment
android:id="@+id/fragment"
android:name="com.example.myapplication.BlankFragment"
android:label="Fragment in Root Graph"
tools:layout="@layout/fragment_blank">
<action
android:id="@+id/action_fragment_to_second_graph"
app:destination="@id/second_graph" />
</fragment>
...
</navigation>
second navigation file
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/second_graph"
app:startDestination="@id/includedStart">
<fragment
android:id="@+id/includedStart"
android:name="com.example.myapplication.IncludedStart"
android:label="fragment_included_start"
tools:layout="@layout/fragment_included_start" />
</navigation>
答案 0 :(得分:1)
按照Design navigation graphs documentation:
[嵌套图]还提供了一定程度的封装-嵌套图之外的目标不能直接访问嵌套图内的任何目标。相反,他们应该
const defaults = { fontFace: "Sen" /* All other properties */ }; styles.title = { ...defaults, /* All other properties - if duplicates, new values are set */ };
到嵌套图本身,在这里嵌套的内部逻辑可以更改而不会影响图的其余部分。
因此,您可以在navigate()
中的任何地方使用navigate(R.id.second_graph)
而不会出现问题,但是您不能直接在其他图形中访问 。
请注意,navigating by URI是一个例外,它允许您通过使用implicit deep link进行导航来导航到图形中的任何目的地(无论是否嵌套)。