I would like to attach a callback to when the Android Navigation Controller navigates up from a specific fragment (findNavController().navigateUp()
). How can I achieve this functionality?
I've already heard about requireActivity().onBackPressedDispatcher.addCallback(this)
. This only listens to the system's back button not the back arrow on the toolbar. I'd like to listen to the event where the user presses the back arrow on the toolbar in the top-left corner.
In your
MainActivity
that contains theNavHostFragment
you can addonDestinationChanged
to theNavController
listeneryou can then add any behavior you desire.
I hope this help.