Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:weightSum="100"
  9. android:orientation="vertical"
  10. android:background="@drawable/bg"
  11. tools:context="com.example.janusz.kolko.MainActivity">
  12.  
  13.  
  14. <LinearLayout
  15. android:id="@+id/linLay"
  16. android:layout_width="match_parent"
  17. android:layout_height="0dp"
  18. android:layout_weight="39">
  19.  
  20.  
  21. <ImageView
  22. android:id="@+id/image0"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:gravity="center" />
  26.  
  27. </LinearLayout>
  28.  
  29.  
  30. <LinearLayout
  31. android:layout_width="match_parent"
  32. android:layout_height="0dp"
  33. android:weightSum="100"
  34. android:orientation="vertical"
  35. android:layout_weight="61">
  36.  
  37. <LinearLayout
  38. android:id="@+id/row0"
  39. android:layout_width="match_parent"
  40. android:layout_height="0dp"
  41. android:orientation="horizontal"
  42. android:weightSum="100"
  43. android:layout_weight="33">
  44.  
  45. <Space
  46. android:layout_width="0dp"
  47. android:layout_height="match_parent"
  48. android:layout_weight="5"/>
  49.  
  50. <ImageView
  51. android:id="@+id/imageView00"
  52. android:layout_width="0dp"
  53. android:layout_height="match_parent"
  54. android:layout_weight="30"/>
  55.  
  56. <ImageView
  57. android:id="@+id/imageView01"
  58. android:layout_width="0dp"
  59. android:layout_height="match_parent"
  60. android:layout_weight="30"/>
  61.  
  62. <ImageView
  63. android:id="@+id/imageView02"
  64. android:layout_width="0dp"
  65. android:layout_height="match_parent"
  66. android:layout_weight="30"/>
  67. <Space
  68. android:layout_width="0dp"
  69. android:layout_height="match_parent"
  70. android:layout_weight="5"/>
  71.  
  72. </LinearLayout>
  73.  
  74. <LinearLayout
  75. android:id="@+id/row1"
  76. android:layout_width="match_parent"
  77. android:layout_height="0dp"
  78. android:orientation="horizontal"
  79. android:weightSum="100"
  80. android:layout_weight="33">
  81.  
  82. <Space
  83. android:layout_width="0dp"
  84. android:layout_height="match_parent"
  85. android:layout_weight="5"/>
  86.  
  87. <ImageView
  88. android:id="@+id/imageView10"
  89. android:layout_width="0dp"
  90. android:layout_height="match_parent"
  91. android:layout_weight="30"/>
  92.  
  93. <ImageView
  94. android:id="@+id/imageView11"
  95. android:layout_width="0dp"
  96. android:layout_height="match_parent"
  97. android:layout_weight="30"/>
  98.  
  99. <ImageView
  100. android:id="@+id/imageView12"
  101. android:layout_width="0dp"
  102. android:layout_height="match_parent"
  103. android:layout_weight="30"/>
  104. <Space
  105. android:layout_width="0dp"
  106. android:layout_height="match_parent"
  107. android:layout_weight="5"/>
  108.  
  109. </LinearLayout>
  110.  
  111. <LinearLayout
  112. android:id="@+id/row2"
  113. android:layout_width="match_parent"
  114. android:layout_height="0dp"
  115. android:orientation="horizontal"
  116. android:weightSum="100"
  117. android:layout_weight="31">
  118.  
  119. <Space
  120. android:layout_width="0dp"
  121. android:layout_height="match_parent"
  122. android:layout_weight="5"/>
  123.  
  124. <ImageView
  125. android:id="@+id/imageView20"
  126. android:layout_width="0dp"
  127. android:layout_height="match_parent"
  128. android:layout_weight="30"/>
  129.  
  130. <ImageView
  131. android:id="@+id/imageView21"
  132. android:layout_width="0dp"
  133. android:layout_height="match_parent"
  134. android:layout_weight="30"/>
  135.  
  136. <ImageView
  137. android:id="@+id/imageView22"
  138. android:layout_width="0dp"
  139. android:layout_height="match_parent"
  140. android:layout_weight="30"/>
  141. <Space
  142. android:layout_width="0dp"
  143. android:layout_height="match_parent"
  144. android:layout_weight="5"/>
  145.  
  146. </LinearLayout>
  147.  
  148. </LinearLayout>
  149.  
  150. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement