1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/drawer_layout">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:theme="@android:style/Theme.Translucent">
- </LinearLayout>
- <!--侧边栏内容-->
- <FrameLayout
- android:id="@+id/menu_frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="start"
- android:clickable="true"
- android:background="#000000">
- <include layout="@layout/pb_account_web"/>
- </FrameLayout>
- </android.support.v4.widget.DrawerLayout>
|