我想在平板电脑上创建一个带有片段和导航组件的简单 2 窗格布局。喷气背包可以吗?我找不到任何如何设置导航组件的示例。
最重要的是,在平板电脑 2 窗格片段布局上还可以,但在手机上,我想全屏显示主片段,并在较小的弹出窗口中显示细节片段,这仍然是片段。它应该在 FrameLayout 中,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<data>
</data>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="false" />
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="200dp"
android:layout_height="300dp"
android:layout_gravity="bottom|end"
app:defaultNavHost="true"
app:navGraph="@navigation/navigation_graph" />
</FrameLayout>
</layout>