Skip to content
Advertisement

Activity does not have a NavController set on

I basically set up 3 fragments for my bottom navigation view with all linked to activity.xml

activity.xml where I put fragment tag.

JavaScript

My Activity.java code (specifically):

JavaScript

The problem now is that if I run that same java code using fragment tag in xml, it runs well but suggests I use <androidx.fragment.app.FragmentContainerView(linters) but on using <androidx.fragment.app.FragmentContainerView, it displays the error in the Logcat.

Activity does not have a NavController set on

I’ve seen a lot of similar errors and fixes for that on this site like FragmentContainerView as NavHostFragment

But the problem now is that most of them post Kotlin codes and the few java codes I tried didn’t work for me

or who can translate this code to java:

JavaScript

Advertisement

Answer

You can get the Nav Controller using Java like this:

JavaScript

And then you setup your bottom navigation like this:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement