pb_side.xml 866 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:id="@+id/drawer_layout">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:theme="@android:style/Theme.Translucent">
  10. </LinearLayout>
  11. <!--侧边栏内容-->
  12. <FrameLayout
  13. android:id="@+id/menu_frame"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:layout_gravity="start"
  17. android:clickable="true"
  18. android:background="#000000">
  19. <include layout="@layout/pb_account_web"/>
  20. </FrameLayout>
  21. </android.support.v4.widget.DrawerLayout>