Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 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="match_parent"
  6. android:layout_height="match_parent">
  7.  
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="160dp" >
  11.  
  12. <android.support.v4.view.ViewPager
  13. android:id="@+id/pager"
  14. android:layout_width="match_parent"
  15. android:layout_height="160dp"
  16. android:layout_alignParentTop="true" />
  17.  
  18. <com.viewpagerindicator.CirclePageIndicator
  19. android:id="@+id/indicator"
  20. android:layout_width="fill_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_alignParentBottom="true"
  23. android:layout_centerHorizontal="true"
  24. android:padding="30dp"
  25. app:centered="true"
  26. app:pageColor="#fff"
  27. app:fillColor="@color/colorPrimary" />
  28.  
  29. <android.support.v7.widget.Toolbar
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent"
  32. android:layout_below="@+id/pager"
  33. android:layout_marginTop="-10dp">
  34.  
  35. <SearchView
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent"
  38. android:gravity="center">
  39. </SearchView>
  40.  
  41. </android.support.v7.widget.Toolbar>
  42. </RelativeLayout>
  43.  
  44. <android.support.v7.widget.RecyclerView
  45. android:id="@+id/list_arena"
  46. android:layout_width="match_parent"
  47. android:layout_height="match_parent"
  48. android:layout_marginTop="16dp"
  49. android:scrollbars="vertical">
  50.  
  51.  
  52. </android.support.v7.widget.RecyclerView>
  53.  
  54. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement