| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/main_drawer_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/transparent" >
- <RelativeLayout
- android:id="@+id/main_content_frame_parent"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/transparent" >
- <!-- 下层显示的主要内容 -->
- <FrameLayout
- android:id="@+id/main_content_frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:scrollbars="vertical" >
- </FrameLayout>
- </RelativeLayout>
- <!-- 左侧滑动栏 -->
- <RelativeLayout
- android:id="@+id/main_left_drawer_layout"
- android:layout_width="240dp"
- android:layout_height="match_parent"
- android:layout_gravity="start"
- android:background="@android:color/transparent"
- android:paddingTop="50dp" >
- </RelativeLayout>
- <!-- 右侧滑动栏 -->
- <RelativeLayout
- android:id="@+id/main_right_drawer_layout"
- android:layout_width="240dp"
- android:layout_height="match_parent"
- android:layout_gravity="end"
- android:background="@android:color/transparent"
- android:paddingTop="50dp" >
- </RelativeLayout>
- </android.support.v4.widget.DrawerLayout>
|