我在Android studio中浏览导航,发现了这个标签,但不知道它有什么意义。
<androidx.fragment.app.FragmentContainerView
android:id="@+id/home_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment" //this one here
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/home_nav_graph" />
它指定应该在布局中实例化哪个片段类。
您可以在这里了解更多有关这方面的信息