如何在导航抽屉的主内容视图中使用多个片段

时间:2013-07-13 18:03:48

标签: android android-fragments fragment navigation-drawer

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

enter image description here

但是AFAIK,drawerLayout的主要内容视图中只能有一个视图。那怎么能实现呢?

1 个答案:

答案 0 :(得分: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>