android是否支持布局xml文件中的多个根

时间:2014-07-21 12:37:29

标签: android android-layout

在这里,我需要结合这两个根......是否可能??? 如果是,那么如何????

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"`
    android:layout_width="match_parent"`
    android:layout_height="match_parent"`
    android:layout_gravity="center_vertical"`
    android:gravity="center_vertical"`
    android:orientation="vertical">`
</LinearLayout>`

<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:background="#ffffff"`
    android:layout_height="match_parent">`

    <ListView
        android:id="@android:id/list"`
        android:layout_width="240dp"`
        android:layout_height="match_parent"`
        android:layout_gravity="left"`
        android:choiceMode="singleChoice"`
        android:dividerHeight="1dp"`
        android:clickable="true"`
        android:background="@android:color/black"/>`

</`android.support.v4.widget.DrawerLayout`>`

3 个答案:

答案 0 :(得分:0)

我已经实现了这样的

<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" >

    <LinearLayout
        android:id="@+id/fragment_container"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/WHITE"
        android:orientation="vertical" >
    </LinearLayout>

    <LinearLayout
        android:id="@+id/left_drawer"
        android:layout_width="250dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        android:background="@drawable/sliding_menu_bg"
        android:orientation="vertical" >

        <ListView
            android:id="@+id/listView_menu_module_list_id"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
        </ListView>
    </LinearLayout>
</android.support.v4.widget.DrawerLayout>

答案 1 :(得分:0)

你不需要这样做。插入DrawerLayout时,您必须为主内容视图提供布局,然后为抽屉提供布局。 例如:

<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 -->

    <LinearLayout
        android:id="@+id/left_drawer"
        android:layout_width="250dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        android:background="@drawable/sliding_menu_bg"
        android:orientation="vertical" >

        <ListView
            android:id="@+id/listView_menu_module_list_id"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
        </ListView>
    </LinearLayout>


    <!-- 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>

答案 2 :(得分:0)

XML标准不允许在xml文档中添加多个根元素。所以我认为任何使用XML的应用程序都不支持XML标准不允许的多个根元素。