触发自动生成代码 Android 导航

Triggering auto gen code Android Navigation

我正在学习 Kotlin,并尝试在我的应用中设置 Navigation

我无法find/trigger Android Studio 中自动生成的代码。基于导航教程,我需要引用它来触发按需操作。我的理解是 HomeFragmentDirections 是自动生成 class.

view.findViewById<Button>(R.id.navigate_action_button)?.setOnClickListener {
    val flowStepNumberArg = 1
    val action = HomeFragmentDirections.nextAction(flowStepNumberArg)
    findNavController().navigate(action)
}

我一直在关注 this

仅在成功构建后导航方向才会 auto-generated。您应该去 Build -> Make Project

或点击