Guest User

Untitled

a guest
Dec 8th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto">
  4. <LinearLayout
  5. android:layout_marginTop="40dp"
  6. android:gravity="center"
  7. android:orientation="horizontal"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10. <ImageView
  11. android:id="@+id/btn1"
  12. android:layout_weight="1"
  13. android:layout_width="80dp"
  14. android:layout_height="80dp"
  15. app:layout_constraintEnd_toEndOf="parent"
  16. app:layout_constraintTop_toTopOf="parent"
  17. android:src="@drawable/btn_stat"
  18. />
  19. <ImageView
  20. android:id="@+id/btn2"
  21. android:layout_weight="1"
  22. android:layout_width="80dp"
  23. android:layout_height="80dp"
  24. app:layout_constraintStart_toStartOf="parent"
  25. app:layout_constraintTop_toTopOf="parent"
  26. android:src="@drawable/btn_empty"
  27. />
  28.  
  29. <ImageView
  30. android:id="@+id/btn3"
  31. android:layout_weight="1"
  32. android:layout_width="80dp"
  33. android:layout_height="80dp"
  34. app:layout_constraintStart_toStartOf="parent"
  35. app:layout_constraintTop_toTopOf="parent"
  36. android:src="@drawable/btn_empty"
  37. />
  38. <ImageView
  39. android:id="@+id/btn4"
  40. android:layout_weight="1"
  41. android:layout_width="80dp"
  42. android:layout_height="80dp"
  43. app:layout_constraintStart_toStartOf="parent"
  44. app:layout_constraintTop_toTopOf="parent"
  45. android:src="@drawable/btn_plus"
  46. />
  47. </LinearLayout>
  48.  
  49. </layout>
Advertisement
Add Comment
Please, Sign In to add comment