DrawerLayout主界面被导航界面覆盖
本帖最后由 xiaoguohaha 于 2013-10-04 16:00:58 编辑
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drawer_layout">
<include layout="@layout/main_layout"/>
<include layout="@layout/module_layout"/>
<include layout="@layout/user_layout"/>
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drawer_layout">
<include layout="@layout/main_layout"/>
<LinearLayout
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start">
<include layout="@layout/module_layout"/>
</LinearLayout>
<LinearLayout
android:id="@+id/right_drawer"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="end" >
<include layout="@layout/user_layout"/>
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>