也许也阅读这篇文章。
下面是一个布局 xml 文件的示例,该文件具有两个相邻且宽度相等的片段。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<fragment
class="package.of.fragmentA"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:id="@+id/fragmentA"
/>
<fragment
class="package.of.fragmentB"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:id="@+id/fragmentB"
/>
</LinearLayout>
在 GMail 应用程序中,fragmentA 类是ListFragment,fragmentB是具有自定义布局文件的普通 Fragment 类。