gpt4 book ai didi

android - 通过 navGraphViewModels 创建 java.lang.IllegalArgumentException : No destination with ID is on the NavController's back stack

转载 作者:行者123 更新时间:2023-12-02 13:26:38 25 4
gpt4 key购买 nike

当发生配置更改并因此重新创建我的 Activity 和 Fragment 时,我的导航 Graph 范围内的 ViewModel 不可用,而 Fragments 已经被再次创建。
似乎在 navGraph 之前重新创建了 Fragment。
我正在使用此代码从我的 Fragment 初始化我的 navGraph 范围 ViewModel:

private val myViewModel: MyViewModel by navGraphViewModels(R.id.nav_graph_id)
如果我尝试使用 myViewModel在 fragment 中 onViewCreated函数,我得到一个 IllegalArgumentException配置更改后。异常(exception):
java.lang.IllegalArgumentException: No destination with ID <destination id> is on the NavController's back stack
我该如何处理?
I have already checked that my ID isn't used anywhere else.
编辑1:
这是我的 activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<androidx.fragment.app.FragmentContainerView
android:id="@+id/main_nav_host"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:navGraph="@navigation/main_nav_graph" />

</androidx.constraintlayout.widget.ConstraintLayout>
这是我的 main_nav_graph.xml:
<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"
app:startDestination="@id/main_nav_graph_1">

<navigation
android:id="@+id/main_nav_graph_1"
android:label="@string/nav_graph_1_label"
app:startDestination="@id/nav_graph_1_start_fragment">
<!-- nav graph stuff -->
</navigation>

<navigation
android:id="@+id/main_nav_graph_2"
android:label="@string/nav_graph_2_label"
app:startDestination="@id/nav_graph_2_start_fragment">

<fragment
android:id="@+id/nav_graph_2_start_fragment"
android:label="@string/nav_graph_2_start_fragment_label"
android:name="my.package.ui.NavGraph2StartFragment"
tools:layout="@layout/fragment_nav_graph_2_start">
</fragment>
<!-- In here is where I get the problem -->
</navigation>

</navigation>

最佳答案

我的问题如下:
配置更改后,NavGraph 返回到其起始目的地,但最后 Activity 的 Fragment 无论如何都会被加载。这意味着实际启动的 Fragment 和 navGraph 的当前目的地不同步。
然后,当我的 Fragment 尝试加载 navGraph 范围内的 ViewModel 时,它失败了,因为 navGraph 认为它位于与实际不同的 Fragment 上。
为了解决我的问题,我必须使用 Activity savedInstanceState Bundle 保存和恢复 navController 的状态。 . (来源:https://stackoverflow.com/a/59987336)

override fun onSaveInstanceState(savedInstanceState: Bundle) {
super.onSaveInstanceState(savedInstanceState)
savedInstanceState.putBundle("nav_state", fragment.findNavController().saveState())
}

// restore in RestoreInstanceState
override fun onRestoreInstanceState(savedInstanceState: Bundle) {
super.onRestoreInstanceState(savedInstanceState)
fragment.findNavController().restoreState(savedInstanceState.getBundle("nav_state"))
}

// or restore in onCreate
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (savedInstanceState?.containsKey("nav_state") == true) {
fragment.findNavController().restoreState(savedInstanceState.getBundle("nav_state"))
}
}

关于android - 通过 navGraphViewModels 创建 java.lang.IllegalArgumentException : No destination with ID <destination id> is on the NavController's back stack,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63780404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com