Android 我的XML上面的导航抽屉

Android 我的XML上面的导航抽屉,android,xml,android-layout,navigation-drawer,Android,Xml,Android Layout,Navigation Drawer,我尝试将我的抽屉导航置于布局/包括“发布”和列表视图之上。 我希望我的导航抽屉刚好在我的id“标题”下方。 有了这个XML,什么都没有出现,我也不知道为什么? 我的标题下方有一个白色视图。 感谢您提前回复 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="

我尝试将我的抽屉导航置于布局/包括“发布”和列表视图之上。 我希望我的导航抽屉刚好在我的id“标题”下方。 有了这个XML,什么都没有出现,我也不知道为什么? 我的标题下方有一个白色视图。 感谢您提前回复

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <include layout="@layout/include_splash" />

    <LinearLayout
        android:id="@+id/l_l_tout_accueil"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:id="@+id/header"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="50dip"
                android:gravity="center_vertical" >

                <ImageButton
                    android:id="@+id/i_b_menu_accueil"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />

                <ImageView
                    android:id="@+id/i_v_logo_accueil"
                    android:layout_width="40dip"
                    android:layout_height="40dip" />

                <TextView
                    android:id="@+id/t_w_rubrique_accueil"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>

                <ImageButton
                    android:id="@+id/i_b_reload_accueil"
                    android:layout_width="35dip"
                    android:layout_height="35dip" />
            </LinearLayout>
        </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:layout_height="match_parent" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical" >

                <include layout="@layout/include_pub" />

                <LinearLayout
                    android:id="@+id/l_l_articles_accueil"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical" >

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

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

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

                <LinearLayout
                    android:id="@+id/l_l_evenements_accueil"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" >

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

                <LinearLayout
                    android:id="@+id/l_l_magazines_accueil"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" >

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

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="1dip"
                    android:background="@color/line" >

                    <TextView
                        android:id="@+id/teeeeeext"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />
                </LinearLayout>
            </LinearLayout>
            <!-- The navigation drawer -->

            <ListView
                android:id="@+id/left_drawer"
                android:layout_width="250dp"
                android:layout_height="match_parent"
                android:layout_gravity="start"
                android:background="#333"
                android:choiceMode="singleChoice"
                android:divider="#666"
                android:dividerHeight="1dp"
                android:paddingLeft="15sp"
                android:paddingRight="15sp"
                android:paddingTop="15sp" />
        </android.support.v4.widget.DrawerLayout>
    </LinearLayout>

</LinearLayout>

我知道@TomHart,但是:LinearLayout/-include\u splash-l\u l\u tout\u acquiel-drawer\u布局与此订单一起使用drawer\u布局是根元素,不起作用。我的include\u pub和我的列表视图没有显示,我有一个白色视图。。。