我正在尝试使用导航片段创建一个简单的应用界面,该界面使用由 navController
控制的底部导航栏来交换片段。
当我运行应用程序时,它按预期工作,但是在 activity_main.xml 文件中,它没有显示我在运行应用程序时看到的布局。有什么原因吗?
活动布局的代码如下:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0"
app:menu="@menu/bottom_navigation_menu"
tools:visibility="visible" />
<!--android:background="#fff"/>-->
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="visible"
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/navigation_graph" />
</androidx.constraintlayout.widget.ConstraintLayout>
答案 0 :(得分:2)
FragmentContainerView
是一个占位符,可以在你做fragment事务的时候显示一个fragment;所以在设计时,Android Studio 不确定哪个片段将首先托管在这个占位符中,因此将其保留为空白。
但如果您想在 navigation_graph
中显示 start_destination 片段,您可以使用 tools:layout
属性,这仅适用于设计时,而不适用于运行时。
假设您要在 FragmentContainerView
中首先托管的片段布局的名称是 fragment_start_destination
tools:layout="@layout/fragment_start_destination"