1

我想在导航抽屉的主要内容视图中显示两个片段(一个是列表片段,另一个是细节片段),如下所示:

在此处输入图像描述

但是 AFAIK 的主要内容视图中只能有一个视图drawerLayout。那么如何才能做到这一点呢?

4

1 回答 1

2

您放在 FrameLayout 中的任何内容都将在主内容视图中。

您可以在此 FrameLayout 中放置您想要的任何内容(包括多个片段):

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- The main content view -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <!-- YOUR CONTENT HERE -->
        <!-- Could be layout with multiple views or fragments -->            

    </FrameLayout


    <!-- The navigation drawer -->
    <ListView android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>
</android.support.v4.widget.DrawerLayout>
于 2013-07-13T18:11:38.827 回答