Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. android:layout_width="match_parent"
  2. android:layout_height="match_parent"
  3. android:orientation="vertical"
  4.  
  5. android:weightSum="3">
  6.  
  7.  
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="0dp"
  11. android:orientation="horizontal"
  12. android:weightSum="2"
  13. android:layout_weight="1">
  14.  
  15.  
  16. <ImageButton
  17. android:id="@+id/imageButton1"
  18. android:layout_width="0dp"
  19. android:layout_height="wrap_content"
  20. android:layout_weight="1"
  21. android:background="@drawable/high_bald_fade_short_on_top"
  22. android:onClick="buttonOne_click" />
  23.  
  24. <ImageButton
  25. android:id="@+id/imageButton2"
  26. android:layout_width="0dp"
  27. android:layout_height="wrap_content"
  28. android:layout_weight="1"
  29. android:background="@drawable/long_messy_hair_low_fade"
  30. android:onClick="buttonTwo_click" />
  31.  
  32.  
  33. </LinearLayout>
  34.  
  35. <LinearLayout
  36. android:layout_width="match_parent"
  37. android:layout_height="0dp"
  38. android:layout_weight="1"
  39. android:orientation="horizontal"
  40. android:weightSum="2">
  41.  
  42.  
  43. <ImageButton
  44. android:id="@+id/imageButton3"
  45. android:layout_width="0dp"
  46. android:layout_height="wrap_content"
  47. android:layout_weight="1"
  48. android:background="@drawable/low_skin_fade_long_wavy_hair"
  49. android:onClick="buttonThree_click" />
  50.  
  51. <ImageButton
  52. android:id="@+id/imageButton4"
  53. android:layout_width="0dp"
  54. android:layout_height="wrap_content"
  55. android:layout_weight="1"
  56. android:background="@drawable/messy_long_hair_beard"
  57. android:onClick="buttonFour_click" />
  58.  
  59.  
  60. </LinearLayout>
  61.  
  62. <LinearLayout
  63. android:layout_width="match_parent"
  64. android:layout_height="0dp"
  65. android:layout_weight="1"
  66. android:orientation="horizontal"
  67. android:weightSum="2">
  68.  
  69.  
  70. <ImageButton
  71. android:id="@+id/imageButton5"
  72. android:layout_width="0dp"
  73. android:layout_height="wrap_content"
  74. android:layout_weight="1"
  75. android:background="@drawable/mid_fade_side_part"
  76. android:onClick="buttonFive_click"/>
  77.  
  78. <ImageButton
  79. android:id="@+id/imageButton6"
  80. android:layout_width="0dp"
  81. android:layout_height="wrap_content"
  82. android:layout_weight="1"
  83. android:background="@drawable/short_sides_medium_hair_on_top"
  84. android:onClick="buttonSix_click"/>
  85.  
  86.  
  87. </LinearLayout>
  88.  
  89. </
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement