Cuando se usa androidx.fragment.app.FragmentContainerView
como navHost en lugar de una fragment
aplicación normal, no puede navegar a un destino después del cambio de orientación.
Me sale el siguiente error:
java.lang.IllegalStateException: no current navigation node
¿Hay algún problema que deba saber para usarlo correctamente o mi forma de usar los componentes de navegación es incorrecta?
Actividad simple xml con una vista:
...
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:navGraph="@navigation/nav_simple" />
...
Código de navegación:
<?xml version="1.0" encoding="utf-8"?>
<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_legislator.xml"
app:startDestination="@id/initialFragment">
<fragment
android:id="@+id/initialFragment"
android:name="com.example.fragmenttag.InitialFragment"
android:label="Initial Fragment"
tools:layout="@layout/initial_fragment">
<action
android:id="@+id/action_initialFragment_to_destinationFragment"
app:destination="@id/destinationFragment" />
</fragment>
<fragment
android:id="@+id/destinationFragment"
android:name="com.example.fragmenttag.DestinationFragment"
android:label="Destination Fragment"
tools:layout="@layout/destination_fragment" />
</navigation>
Aquí hay un repositorio de Github donde puede reproducir fácilmente un error: https://github.com/dmytroKarataiev/navHostBug
<fragment
aFragmentContainerView
.