Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:orientation="vertical" android:layout_width="match_parent"
  3. android:layout_height="match_parent">
  4. <android.support.v7.widget.RecyclerView
  5. android:id="@+id/libraryBookList"
  6. android:scrollbars="vertical"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"/>
  9. </LinearLayout>
  10.  
  11. <?xml version="1.0" encoding="utf-8"?>
  12. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  13. xmlns:app="http://schemas.android.com/apk/res-auto"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent">
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:orientation="vertical">
  20. <include layout="@layout/toolbar" />
  21.  
  22. <android.support.v4.view.ViewPager
  23. android:id="@+id/viewpager"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  27. android:layout_weight="1" />
  28.  
  29. <android.support.design.widget.TabLayout
  30. android:id="@+id/tabs"
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. app:tabMode="fixed"
  34. app:tabGravity="fill"
  35. android:layout_gravity="bottom"
  36. android:background="@drawable/bottom_bar_background" />
  37.  
  38. </LinearLayout>
  39.  
  40. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement