我想在平板电脑上使用片段和导航组件创建一个简单的2窗格布局。 jetpack有可能吗?我找不到任何示例如何设置导航组件。
在平板电脑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>