gpt4 book ai didi

android - NavController.OnDestinationChangedListener 传递了一个与触发的导航操作 ID 不匹配的 destination.id

转载 作者:行者123 更新时间:2023-12-03 14:27:31 25 4
gpt4 key购买 nike

在我的 Android 项目中,我有一个非常简单的 Navigation Graph,包括两个 fragment :Master 和 Detail:

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

<fragment
android:id="@+id/wordsListFragment"
android:name="com.***.presentation.view.WordsListFragment"
android:label="List"
tools:layout="@layout/words_list_fragment">
<action
android:id="@+id/action_wordsListFragment_to_wordDetailsFragment"
app:destination="@id/wordDetailsFragment" />
</fragment>
<fragment
android:id="@+id/wordDetailsFragment"
android:name="com.***.presentation.view.WordDetailsFragment"
android:label="Details"
tools:layout="@layout/word_details_fragment" />
</navigation>

导航本身在两个方向上都可以正常工作,包括“返回”行为。
在那个项目中,我有一个 Activity ,我在其中实现 OnDestinationChangedListener .
所有这些都根据 Google 的以下文档: NavController Updating UI

当用户单击列表项时(在主 fragment 上),我调用以下方法:
findNavController().navigate(R.id.action_wordsListFragment_to_wordDetailsFragment, null)

然后在父 Activity 中,我有以下实现:
private fun setupNavController() {
navigationController = findNavController(R.id.nav_mainhost_fragment_container)
navigationController.addOnDestinationChangedListener(mainDestinationChangedListener)
appBarConfiguration = AppBarConfiguration(navigationController.graph)
setupActionBarWithNavController(navigationController, appBarConfiguration)
}

那就是监听器对象:
private val mainDestinationChangedListener = 
NavController.OnDestinationChangedListener { controller, destination, arguments ->

if (destination.id == R.id.action_wordsListFragment_to_wordDetailsFragment) {
actionBar?.hide()
} else {
actionBar?.show()
}
}

但是 destination.idR.id.action_wordsListFragment_to_wordDetailsFragment 不匹配

我试过清理项目,清理IDE缓存,gradle缓存,但是生成的标识符还是不匹配。我还尝试通过 Safe Args 使用 Navigation:
val action = WordsListFragmentDirections.actionWordsListFragmentToWordDetailsFragment()
findNavController().navigate(action)

但给定监听器中的结果始终相同(即不匹配)。

调试中的一些值:
findNavController().navigate(1000021) //R.id.action_wordsListFragment_to_wordDetailsFragment

但堆栈上的下一个调用有另一个值:
enter image description here
什么也匹配 destination.id传递给 OnDestinationChangedListener 的值:
destination.id //2131231018

您的任何提示都非常受欢迎。我只想识别目的地或 Action ID 并相应地调整工具栏。

最佳答案

您正在比较 fragment ID 操作 ID 所以总是假的

这里 if (destination.id == R.id.action_wordsListFragment_to_wordDetailsFragment)
destination.id fragment ID
R.id.action_wordsListFragment_to_wordDetailsFragment操作 ID

为了使它起作用,您应该比较两个 fragment ID,例如

if (destination.id == R.id.wordDetailsFragment)

*编辑

首先你应该找到你的 navControler ,然后听它的目的地变化。
val navController = findNavController(this,R.id.nav_host_fragment)// this maybe change
navController.addOnDestinationChangedListener { controller, destination, arguments ->
if(destination.id == R.id.wordDetailsFragment) {
actionBar?.hide()
} else {
actionBar?.show()
}
}

关于android - NavController.OnDestinationChangedListener 传递了一个与触发的导航操作 ID 不匹配的 destination.id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60681700/

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