Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <android.support.design.widget.CoordinatorLayout
  2. 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/coordinator_main_content"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8.  
  9. <android.support.design.widget.AppBarLayout
  10. android:id="@+id/appbar"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content">
  13.  
  14.  
  15. <android.support.design.widget.TabLayout
  16. android:id="@+id/tabs"
  17. android:layout_width="match_parent"
  18. android:layout_height="?attr/actionBarSize"
  19. app:layout_scrollFlags="scroll|enterAlways" />
  20.  
  21. </android.support.design.widget.AppBarLayout>
  22.  
  23.  
  24. <android.support.v4.view.ViewPager
  25. android:id="@+id/pager"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. app:layout_behavior="@string/appbar_scrolling_view_behavior" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement