Après la mise à jour de Navigation 2.2.0-beta01 à partir de la version précédente, lint émet un avertissement concernant le remplacement du fichier <fragment>
tag avec FragmentContainerView
.
Cependant, le remplacement de la balise seule semble empêcher le graphique de navigation d'être gonflé.
Según 2.2.0-alpha01 , FragmentContainerView
est utilisé en interne. Devons-nous ignorer l'avertissement de Lint ?
activité_main.xml
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Lint warning: "Replace the <fragment> tag with FragmentContainerView. -->
<fragment
android:id="@+id/nav_host_main"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph_main"/>
<!-- other elements -->
</androidx.constraintlayout.widget.ConstraintLayout>