NavigationFragment 不显示内容

NavigationFragment does not show content

我关注了a guide on creating android navigation with the androidx navigation package。但是,我无法显示任何内容。当应用程序启动时,它显示并清空 activity 而不是我的片段的内容。

您是否需要做任何额外的事情才能让它显示导航图的开始屏幕?

启动器xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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_height="match_parent"
android:layout_width="match_parent">

<fragment
    android:id="@+id/launcherNavHostFragment"
    android:name="androidx.navigation.fragment.NavHostFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:navGraph="@navigation/navigation_launcher" />
</FrameLayout>

导航图(navigation_launcher)

<?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/navigation_launcher"
app:startDestination="@id/launcherFragment">

<fragment
    android:id="@+id/launcherFragment"
    android:name="com.myapp.Views.LauncherFragment"
    android:label="fragment_launcher"
    tools:layout="@layout/fragment_launcher" >
    <action
        android:id="@+id/action_launcherFragment_to_mainActivity"
        app:destination="@id/mainActivity" />
</fragment>
<activity
    android:id="@+id/mainActivity"
    android:name="com.myapp.Views.MainActivity"
    android:label="activity_main"
    tools:layout="@layout/activity_main" />
</navigation>

这些片段只是内部带有文本视图的基本片段。这里没什么特别的。

对遗漏的内容有什么想法吗?

据我从您发布的代码中看到的,您的配置存在一些错误:

  1. 导航主机片段应包含在 activity_main.xml(或您的主要 activity 布局文件中,主要 activity 应在您的 manifest 文件中定义,并且它是负责加载应用程序显示的第一个片段的人
  2. 启动器片段布局本身不应包含 NavHostFragment,但它应该在框架布局内包含一些视图(例如显示一些文本的文本视图)

- 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:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment
        android:id="@+id/nav_host_fragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:defaultNavHost="true"
        app:layout_constraintBottom_toTopOf="@+id/nav_view"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:navGraph="@navigation/navigation_launcher" />

</androidx.constraintlayout.widget.ConstraintLayout>

- fragment_launcher.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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_height="match_parent"
android:layout_width="match_parent">

<TextView android:text="I'm the launcher fragment" 
   android:layout_height="wrap_content"
   android:layout_width="wrap_content" />
</FrameLayout>