当尝试在抽屉布局标题上导航onclick时,它说
'VIEW' <...> does not have a NavController set at androidx.navigation.Navigation.findNavController
我试图使用提供的不同方法从控制器导航,但是似乎没有任何作用,我想这不是解决问题的方法
我发现它与动作有关,下面的代码确实起作用
Navigation.findNavController(it).navigate(R.id.profileFragmentNav)
,但是在下面的代码中使用id不会:
<action android:id="@+id/action_profileFragmentNav_to_chatlistFragment"/>
是否可以通过传递嵌套的自定义视图来使headerLayout与navController一起使用?