6

in the fragment which i made it host in the tag fragment in activity when i use navController = Navigation.findNAvController(view) the app crashes by the error: View does not have a navController set.

this is nav_graph:

<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/nav_graph"
    app:startDestination="@id/mainFragment">

    <fragment
        android:id="@+id/mainFragment"
        android:name="studio.apptick.mouj.view.fragments.MainFragment"
        tools:layout="@layout/fragment_main"
        android:label="fragment_main" >
        <action
            android:id="@+id/action_mainFragment_to_playlistActivityFragment"
            app:destination="@id/playlistActivityFragment" />
        <action
            android:id="@+id/action_mainFragment_to_searchActivity"
            app:destination="@id/searchActivity" />
    </fragment>
    <activity
        android:id="@+id/searchActivity"
        android:name="studio.apptick.mouj.view.activity.SearchActivity"
        android:label="activity_search"
        tools:layout="@layout/activity_search" />
</navigation>

this is fragment tag in activity:

        android:id="@+id/nav_host_fragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toTopOf="@id/view_player"
        android:name="androidx.navigation.fragment.NavHostFragment"
        app:defaultNavHost="true"
        app:navGraph="@navigation/nav_graph">
    </fragment>
james rm
  • 61
  • 1
  • 3

6 Answers6

8

I was facing the same issue, until I realized that we have to setup navControol onPostCreate function like this

@Override
public void onPostCreate(@Nullable Bundle savedInstanceState, @Nullable PersistableBundle persistentState) {
    super.onPostCreate(savedInstanceState, persistentState);

    BottomNavigationView navigationView = findViewById(R.id.nav_view);


    AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder(
            R.id.navigation_home, R.id.navigation_memories, R.id.navigation_account)
            .build();
    NavController navController = Navigation.findNavController(this, R.id.main_fragment);
    NavigationUI.setupActionBarWithNavController(this, navController, appBarConfiguration);
    NavigationUI.setupWithNavController(navigationView, navController);
}
akshaysahai
  • 1,517
  • 13
  • 19
  • how can you handle navController and back stack. Example you have selected 2nd Number navigation it have inside 5 fragment. you are on 4th fragment and you have exit current fragment and get back to 2nd number navigation 1st or 2nd fragment???? – Dens Oct 27 '20 at 02:12
6

If you want navController in activity you can find it via

navController = Navigation.findNavController(Activity, R.id.nav_host_fragment)

or in a fragment

navController = NavHostFragment.findNavController(Fragment)

or

navController = Navigation.findNavController(View)
asad mahmood
  • 250
  • 1
  • 3
  • 8
3

I got today alike error

ava.lang.IllegalStateException: Activity com.example.roomtutorial.MainActivity@2a8d7bb does not have a NavController set on 2131231116

I get this error pointing on setupActionBarWithNavController(findNavController(R.id.mainFragment))

So the problem was in XML

<androidx.fragment.app.FragmentContainerView
    android:id="@+id/fragment"
    android:name="androidx.navigation.fragment.NavHostFragment"

etc..... I delt with a problem by changing <androidx.fragment.app.FragmentContainerView to <fragment

Someone who designs the option really messed it up.

1

Initiate the navController after view created in case of fragment

 //    ....
lateinit var navController: NavController
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
    super.onViewCreated(view, savedInstanceState)
    navController = Navigation.findNavController(view)
    //...
}
Zulqarnain
  • 521
  • 4
  • 14
1

You can use the Kotlin Extension Function to navigate to the destination.

findNavController().navigate(R.id.action_homeFragment_to_destinationFragment)

Also, make sure you use to replace the fragment tag with FragmentContainerView as recommended by android.

<androidx.fragment.app.FragmentContainerView
   android:id="@+id/my_nav_host_fragment"
   android:layout_width="match_parent"
   android:name="androidx.navigation.fragment.NavHostFragment"
   app:defaultNavHost="true"
   app:navGraph="@navigation/nav_graph"
   android:layout_height="match_parent"/>
Chintan Parmar
  • 795
  • 6
  • 12
1

I use to this solution in my projects.

navController = (supportFragmentManager.findFragmentById(R.id.nav_host_fragment) as NavHostFragment).navController

navController.addOnDestinationChangedListener { controller, destination, arguments ->
                when(destination.id){
                    R.id.genre->{ materialToolbar.title = getString(R.string.app_name) }
                    R.id.search->{ materialToolbar.title = getString(R.string.search) }
                    R.id.favorites->{ materialToolbar.title = getString(R.string.favorites) }

                }
            }
fevziomurtekin
  • 144
  • 2
  • 10