Ao usar androidx.fragment.app.FragmentContainerView
como um navHost em vez de um fragment
aplicativo normal, não é possível navegar para um destino após a alteração da orientação.
Eu recebo o seguinte erro:
java.lang.IllegalStateException: no current navigation node
Existe algum problema que eu deva saber sobre como usá-lo corretamente ou a minha maneira de usar os componentes nav está incorreta?
XML de atividade simples com uma visão:
...
<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 navegação:
<?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>
Aqui está um repositório do github onde você pode reproduzir facilmente um bug: https://github.com/dmytroKarataiev/navHostBug
<fragment
em umFragmentContainerView
.