使用导航组件从Backstack中移除碎片



我相信有很多问题类似于这个问题。然而,我找不到解决我所处问题的方法。问题是popBackStack函数从backpack中删除了碎片。然而,当另一个新导航发生时,它会崩溃。让我举一个例子,我有三个片段,片段第一、片段第二和片段第三。一个导航图,

<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_a"
app:startDestination="@id/firstFragment">
<fragment
android:id="@+id/firstFragment"
android:name="com.example.myapplication.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.example.myapplication.SecondFragment"
android:label="SecondFragment" >
<action
android:id="@+id/action_secondFragment_to_thirdFragment"
app:destination="@id/thirdFragment" />
</fragment>
<fragment
android:id="@+id/thirdFragment"
android:name="com.example.myapplication.ThirdFragment"
android:label="ThirdFragment" >
</fragment>
</navigation>

FirstFragment,

button.setOnClickListener {
findNavController().navigate(R.id.action_firstFragment_to_secondFragment)
}

第二片段,

button2.setOnClickListener {
view.findNavController().navigate(R.id.action_secondFragment_to_thirdFragment)
}

ThirdFragment,

button3.setOnClickListener {
findNavController().popBackStack(R.id.firstFragment, true)
}

现在,我可以从第一导航到第二,从第二导航到第三,从第三导航到第一。但当我再次按下First中的按钮时,它崩溃了,消息是

id/action_firstFragment_to_secondFragment cannot be found from the current destination NavGraph

如果我在图形中创建一个动作,比如

<fragment
android:id="@+id/thirdFragment"
android:name="com.example.myapplication.ThirdFragment"
android:label="ThirdFragment" >
<action
app:popUpTo="@id/firstFragment"
app:popUpToInclusive="true"
android:id="@+id/action_thirdFragment_to_firstFragment"
app:destination="@id/firstFragment" />
</fragment>

在第三个片段中,

button3.setOnClickListener {
findNavController().navigate(R.id.action_thirdFragment_to_firstFragment)
}

在这种情况下,它可以完美地工作。然而,由于我工作的应用程序的限制,我想使用popBackStack。

提前感谢。

popBackStack(R.id.firstFragment, true)弹出第一个片段之前的所有内容。你已经从后面的堆栈中弹出了所有碎片。如果您只想返回到第一个片段,那么您似乎想要使用false,而不是true

相关内容

  • 没有找到相关文章

最新更新