Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6.  
  7. <ImageView
  8. android:layout_width="match_parent"
  9. android:layout_height="0dp"
  10. android:layout_weight="1"
  11. android:background="@color/colorPrimary" />
  12.  
  13. <HorizontalScrollView
  14. android:layout_width="match_parent"
  15. android:layout_height="0dp"
  16. android:layout_weight="1">
  17.  
  18. <LinearLayout
  19. android:layout_width="wrap_content"
  20. android:layout_height="match_parent"
  21. android:orientation="horizontal">
  22.  
  23. <ImageView
  24. android:layout_width="match_parent"
  25. android:layout_height="match_parent"
  26. android:background="@color/colorPrimary" />
  27.  
  28. <ImageView
  29. android:layout_width="match_parent"
  30. android:layout_height="match_parent"
  31. android:background="@color/colorPrimary" />
  32.  
  33. <ImageView
  34. android:layout_width="match_parent"
  35. android:layout_height="match_parent"
  36. android:background="@color/colorPrimary" />
  37.  
  38.  
  39. </LinearLayout>
  40.  
  41.  
  42. </HorizontalScrollView>
  43.  
  44. <ImageView
  45. android:layout_width="match_parent"
  46. android:layout_height="0dp"
  47. android:layout_weight="1"
  48. android:background="@color/colorAccent" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement