导航到另一个图的片段,而不将其作为起始目标

时间:2020-01-30 12:02:15

标签: android kotlin navigation android-jetpack

在我的第一张图中,我有以下内容:

<?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/firstGraph"
    app:startDestination="@id/listFragment">

    <fragment
        android:id="@+id/listFragment"
        android:name="com.example.ListFragment">

        <action
            android:id="@+id/action_list_to_details"
            app:destination="@id/detailsFragment" />

    </fragment>

    <fragment
        android:id="@+id/detailsFragment"
        android:name="com.example.DetailsFragment">

    </fragment>
</navigation>

在第二张图中,我有以下内容:

<?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/secondGraph"
    app:startDestination="@id/dashboardFragment">

    <include app:graph="@navigation/firstGraph" />

    <fragment
        android:id="@+id/dashboardFragment"
        android:name="com.example.DashboardFragment">
        <action
            android:id="@+id/action_dashboard_to_notification"
            app:destination="@id/notificationFragment"/>
    </fragment>

    <fragment
        android:id="@+id/notificationFragment"
        android:name="com.example.NotificationsFragment">

        <action
            android:id="@+id/action_notification_to_details"
            app:destination="@id/firstGraph"/>

    </fragment>
</navigation>

我想直接从“ notificationFragment”导航到“ detailsFragment”而不将其作为起始目的地,并包括第二个图形堆栈

1 个答案:

答案 0 :(得分:11)

根据nested graph documentation

[嵌套图]还提供了一定程度的封装-嵌套图之外的目标无法直接访问嵌套图内的任何目标。

一个例外是,当您navigating using a URI时,可以有效地深度链接到任何目标:

与使用操作或目标ID进行导航不同,无论目标是否可见,都可以导航到图形中的任何URI。您可以导航到当前图形上的目标或完全不同的图形上的目标。

因此,您可以add an implicit deep link to your graph

<fragment
    android:id="@+id/detailsFragment"
    android:name="com.example.DetailsFragment">
    <deepLink app:uri="android-app://your.package.name/details" />
</fragment>

然后通过URI导航到该目的地:

val uri = Uri.parse("android-app://your.package.name/details")
navController.navigate(uri)

只要<deepLink>与您传递给navigate的内容匹配,您的URI是什么都没有关系。您拥有的所有参数都需要在URL中进行编码。