codelab-android-navigation
codelab-android-navigation copied to clipboard
Navigation.createNavigateOnClickListener didn't work
val button = view.findViewById<Button>(R.id.navigate_destination_button) button?.setOnClickListener( Navigation.createNavigateOnClickListener(R.id.flow_step_one_dest, null) )
Navigation.createNavigateOnClickListener(R.id.flow_step_one_dest, null) It doesn't work.
It's actually working fine, mind to check the parenthesis
//not working
button?.setOnClickListener { Navigation.createNavigateOnClickListener(R.id.flow_step_one_dest, null) }
//working
button?.setOnClickListener( Navigation.createNavigateOnClickListener(R.id.flow_step_one_dest, null) )