Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/drawer_layout"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:fitsSystemWindows="true"
  9. tools:openDrawer="start">
  10.  
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:orientation="vertical">
  15.  
  16. <FrameLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:id="@+id/content_frame"/>
  20.  
  21. </LinearLayout>
  22.  
  23. <include
  24. layout="@layout/app_bar_side_menu"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent" />
  27.  
  28. <android.support.design.widget.NavigationView
  29. android:id="@+id/navigation_view"
  30. android:layout_width="250dp"
  31. android:layout_height="match_parent"
  32. android:layout_gravity="start"
  33. app:headerLayout="@layout/nav_header_side_menu"
  34. app:menu="@menu/activity_side_menu_drawer" />
  35.  
  36. </android.support.v4.widget.DrawerLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement