Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/activity_main"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:fitsSystemWindows="true"
  8. tools:openDrawer="start"
  9. tools:context="com.example.yunus.ototakip.MainActivity">
  10.  
  11. <include
  12. layout="@layout/app_bar_navigation_bar"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent" />
  15.  
  16. <android.support.design.widget.NavigationView
  17. android:id="@+id/nav_view"
  18. android:layout_width="wrap_content"
  19. android:layout_height="match_parent"
  20. android:layout_gravity="start"
  21. android:fitsSystemWindows="true"
  22. app:headerLayout="@layout/nav_header_navigation_bar"
  23. app:menu="@menu/activity_navigation_bar_drawer" />
  24. <FrameLayout
  25. android:id="@+id/main_container"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. android:layout_alignParentTop="true"
  29. android:layout_alignParentStart="true">
  30. </FrameLayout>
  31.  
  32. <android.support.design.widget.BottomNavigationView
  33. android:id="@+id/bottom_navigation"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:layout_alignParentBottom="true"
  37. app:itemBackground="@color/colorPrimary"
  38. app:itemIconTint="@color/beyaz"
  39. app:itemTextColor="@color/beyaz"
  40. app:menu="@menu/bottombar_menu" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement