10

在我正在构建的应用程序中,我使用了单一活动架构,并决定使用 Google 的新导航组件在应用程序中导航。
尽管它显示出巨大的希望,但它也有一些缺点,我的问题就是其中之一。

假设我们有三个按顺序导航的片段,除了当我们在第三个片段上单击后退按钮时我们想返回第一个片段。事情是这样的:

从一到二到三的导航

<?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/main_nav_graph.xml"
    app:startDestination="@id/firstFragment">

    <fragment
        android:id="@+id/firstFragment"
        android:name="com.hmomeni.navisample.FirstFragment"
        android:label="fragment_first"
        tools:layout="@layout/fragment_first" >
        <action
            android:id="@+id/action_firstFragment_to_secondFragment"
            app:destination="@id/secondFragment" />
    </fragment>
    <fragment
        android:id="@+id/secondFragment"
        android:name="com.hmomeni.navisample.SecondFragment"
        android:label="fragment_second"
        tools:layout="@layout/fragment_second" >
        <action
            android:id="@+id/action_secondFragment_to_thirdFragment"
            app:destination="@id/thirdFragment"
            app:popUpTo="@+id/firstFragment" />
    </fragment>
    <fragment
        android:id="@+id/thirdFragment"
        android:name="com.hmomeni.navisample.ThirdFragment"
        android:label="fragment_third"
        tools:layout="@layout/fragment_third" />
</navigation>

这里的问题是,当我想第二次重复导航时,会发生异常告诉我:

java.lang.IllegalArgumentException:导航目的地 com.hmomeni.navisample:id/action_firstFragment_to_secondFragment 对此 NavController 是未知的

进一步调查显示,在点击返回按钮并返回第一个片段时,navController.currentDestination仍然指的是ThirdFragment哪个是错误的,应该是FirstFragment

对此的任何帮助表示赞赏。

4

2 回答 2

6

我遇到了与这个问题类似的问题,但是使用循环导航,没有弹出后退堆栈。从 C --> A 导航时,我错误地将参数设置navigate(int resId)R.id.fragmentC

而不是使用类似的动作

R.id.action_c_to_a

于 2019-07-12T05:41:51.430 回答
0

我发现了一种解决方法,尽管我不会将其称为解决方案。
要解决这个问题,可以从ThirdFragment自身创建一个动作,然后检查navController.currentDestination何时调用 navigation。

由于缺乏真正的解决方案,我不会接受这个答案。

于 2018-08-11T05:15:55.960 回答