我正在学习Kotlin,并尝试在我的应用中设置导航。
我无法在Android Studio中找到/触发自动生成的代码。基于导航教程,我需要引用它以按需触发操作。据我了解,HomeFragmentDirections是一个自动生成类。
view.findViewById<Button>(R.id.navigate_action_button)?.setOnClickListener {
val flowStepNumberArg = 1
val action = HomeFragmentDirections.nextAction(flowStepNumberArg)
findNavController().navigate(action)
}
我一直在关注this。 最佳答案