当返回到“导航架构组件”中的同一选项卡时,嵌套片段的状态会丢失
Posted
技术标签:
【中文标题】当返回到“导航架构组件”中的同一选项卡时,嵌套片段的状态会丢失【英文标题】:State of nested Fragments is lost when returned to same tab in 'Navigation Architecture Component' 【发布时间】:2018-12-01 16:31:50 【问题描述】:我正在探索上个月在 Google I/O 2018 中引入的“导航架构组件”概念。
假设我有一个带有底部导航视图和一个“片段”来托管所有片段的活动:-
<android.support.constraint.ConstraintLayout
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_
android:layout_
tools:context=".view.MainActivity">
<fragment
android:id="@+id/root_form"
android:layout_
android:layout_
android:name="androidx.navigation.fragment.NavHostFragment"
app:navGraph="@navigation/nav_graph"
app:defaultNavHost="true"
/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_
android:layout_
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
我的底部导航视图中有 2 个操作/选项卡,它们将分别显示 FragmentA 和 FragmentB。 FragmentB 有一个嵌套的(子)片段 FragmentC,可以从 FragmentB 打开。
在我的 Activity 类中,我使用“setupWithNavController()”函数将底部导航视图与导航控制器链接起来。 (包含在“androidx.navigation.ui”包中的 Kotlin 扩展功能):-
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
bottom_navigation.setupWithNavController(findNavController(R.id.root_form))
一切正常。
但是如果用户在 FragmentC 中导航到 FragmentA 并返回到同一个选项卡,那么他只会得到 FragmentB 而不是 FragmentC。当用户返回同一选项卡时,它在底部导航中是一种常见模式,它应该显示他正在查看的最后一个子/嵌套片段。
我知道如果我们有自己的片段事务,我们可以处理这个问题,但是如何在“导航架构组件”域中解决这个问题?
【问题讨论】:
你检查了吗? ***.com/a/50626510/7765139最后我分享了一段可能对你有帮助的代码 感谢您,但没有解决我在返回底部导航中的同一选项卡时恢复先前打开的子/嵌套选项卡的问题。 @Niroshan 你得到这个问题的解决方案了吗,我也在寻找同样的东西。 还没有找到任何东西!我的意思是任何直接的方法。 使用片段事务将是一种更现实的方式,因为导航组件目前可能还没有为生产做好准备。我用 show/hide 解决了这个问题,因为项目不能等待官方解决方案或 codelab 示例。 【参考方案1】:您可以使用一个容器片段来保存 viewpager 并且是来自父级的导航位置。当您在 A 或 B 中时,您可以点击 C,然后当您返回时,它会返回到父级,该父级仍将位于您所在的片段选项卡上。
导航图从不知道 Frag A 或 B,但它知道容器。
【讨论】:
以上是关于当返回到“导航架构组件”中的同一选项卡时,嵌套片段的状态会丢失的主要内容,如果未能解决你的问题,请参考以下文章
导航架构组件 singleTask 或 singleInstance 在返回堆栈中