I\'m using Android Navigation Component with bottom navigation, lint gives a warning about replacing the tag with FragmentContainerView>
FragmentContainerView>
On top of the accepted answer, a little shortcut what could be used is:
supportFragmentManager.findFragmentById(R.id.navHostMain)?.findNavController()
Regards