Advertisement
minafaw3

main.xml

Jul 21st, 2016
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent">
  7.  
  8. <android.support.v7.widget.Toolbar
  9. android:id="@+id/toolbar"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. />
  13. <android.support.v4.widget.DrawerLayout
  14. android:id="@+id/drawer_layout"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent">
  17. <!-- The Main Content View -->
  18. <FrameLayout
  19. android:id="@+id/content_view"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"/>
  22. <!-- The Left Navigation Drawer -->
  23. <ListView
  24. android:id="@+id/left_drawer"
  25. android:layout_width="240dp"
  26. android:layout_height="match_parent"
  27. android:layout_gravity="start"
  28. android:choiceMode="singleChoice"
  29. android:divider="#818181"
  30. android:dividerHeight="1dp"
  31. android:background="#E3F2FD" />
  32.  
  33. </android.support.v4.widget.DrawerLayout>
  34. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement