Advertisement
Guest User

Untitled

a guest
Sep 12th, 2018
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 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:foo="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:background="@drawable/home_background"
  6. android:layout_width="match_parent"
  7. android:weightSum="9"
  8. android:layout_height="match_parent">
  9. <android.support.v4.view.ViewPager
  10. android:id="@+id/pager"
  11. android:layout_width="match_parent"
  12. android:layout_height="0dp"
  13. android:layout_alignParentTop="true"
  14. android:layout_weight="5"
  15. android:layout_marginTop="20dp" />
  16. <RelativeLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="0dp"
  19. android:layout_weight="4">
  20. <GridView
  21. android:id="@+id/button_container"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:numColumns="3"
  25. android:layout_marginTop="10dp"
  26. android:layout_marginRight="30dp"
  27. android:layout_marginBottom="10dp"
  28. android:layout_marginLeft="30dp"
  29. android:verticalSpacing="5dp"
  30. android:horizontalSpacing="5dp"
  31. android:stretchMode="columnWidth"
  32. android:layout_centerInParent="true" />
  33. <RelativeLayout
  34. android:minWidth="25px"
  35. android:minHeight="25px"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:id="@+id/relativeLayout1">
  39. <android.support.v4.widget.SwipeRefreshLayout
  40. android:minWidth="25px"
  41. android:minHeight="25px"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:id="@+id/swipeRefreshLayout1" />
  45. </RelativeLayout>
  46. </RelativeLayout>
  47. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement