1

我正在尝试使用导航片段创建一个简单的应用程序界面,该片段使用由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>
4

1 回答 1

2

FragmentContainerView是一个占位符,可以在您进行片段交易时显示片段;所以在设计时,Android工作室不确定哪个片段将首先托管在这个占位符中,所以它保持空白。

但是,如果您想在中显示 start_destination 片段,navigation_graph您可以使用该tools:layout属性,这仅适用于设计时,而不适用于运行时。

假设您要在其中首先托管的片段布局的名称FragmentContainerViewfragment_start_destination

tools:layout="@layout/fragment_start_destination"
于 2021-05-03T21:24:35.983 回答