Advertisement
minafaw3

keyboard_gridlayout

Aug 24th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/voucherrelative"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8.  
  9. <TextView
  10. android:id="@+id/vouchertxt"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_alignParentLeft="true"
  14. android:layout_alignParentStart="true"
  15. android:layout_alignParentTop="true"
  16. android:layout_marginTop="20dp"
  17. android:gravity="center"
  18. android:text="Enter Voucher Code"
  19. android:textSize="25sp" />
  20.  
  21. <LinearLayout
  22. android:id="@+id/codeLinear"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_alignParentLeft="true"
  26. android:layout_alignParentStart="true"
  27. android:layout_below="@+id/vouchertxt"
  28. android:layout_marginBottom="20dp"
  29. android:layout_marginTop="20dp"
  30. android:focusable="true"
  31. android:focusableInTouchMode="true"
  32. android:orientation="horizontal"
  33. android:weightSum="3">
  34.  
  35. <EditText
  36. android:id="@+id/code1"
  37. android:layout_width="0dp"
  38. android:layout_height="wrap_content"
  39. android:layout_marginRight="2dp"
  40. android:layout_weight="1"
  41. android:focusable="true"
  42. android:focusableInTouchMode="true"
  43. android:gravity="center"
  44. android:imeOptions="actionDone"
  45. android:inputType="number"
  46. android:maxLength="3"
  47. android:nextFocusUp="@+id/code2"
  48. android:singleLine="true"
  49. android:textCursorDrawable="@drawable/black_cursor"
  50. android:textSize="25dp" />
  51.  
  52.  
  53. <EditText
  54. android:id="@+id/code2"
  55. android:layout_width="0dp"
  56. android:layout_height="wrap_content"
  57. android:layout_marginRight="2dp"
  58. android:layout_weight="1"
  59. android:gravity="center"
  60. android:imeOptions="actionNext"
  61. android:inputType="number"
  62. android:maxLength="3"
  63. android:nextFocusDown="@+id/code1"
  64. android:nextFocusUp="@+id/code3"
  65. android:textCursorDrawable="@drawable/black_cursor"
  66. android:textSize="25dp" />
  67.  
  68. <EditText
  69. android:id="@+id/code3"
  70. android:layout_width="0dp"
  71. android:layout_height="wrap_content"
  72. android:layout_weight="1"
  73. android:gravity="center"
  74. android:inputType="number"
  75. android:maxLength="3"
  76. android:nextFocusDown="@+id/code2"
  77. android:textCursorDrawable="@drawable/black_cursor"
  78. android:textSize="25dp" />
  79.  
  80. </LinearLayout>
  81.  
  82.  
  83. <LinearLayout
  84. android:id="@+id/check_linear"
  85. android:layout_width="match_parent"
  86. android:layout_height="wrap_content"
  87. android:layout_below="@+id/codeLinear"
  88. android:orientation="horizontal">
  89.  
  90. <Button
  91. android:id="@+id/scanqr"
  92. android:layout_width="0dp"
  93. android:layout_height="wrap_content"
  94. android:layout_marginBottom="5dp"
  95. android:layout_marginLeft="5dp"
  96. android:layout_marginRight="5dp"
  97. android:layout_weight="2"
  98. android:background="@drawable/roundedwhite"
  99. android:text="Scan "
  100. android:textColor="#191919" />
  101.  
  102. <Button
  103. android:id="@+id/buttoncheck"
  104. android:layout_width="0dp"
  105. android:layout_height="wrap_content"
  106. android:layout_marginLeft="5dp"
  107. android:layout_marginRight="5dp"
  108. android:layout_weight="2"
  109. android:background="@drawable/roundedbutton"
  110. android:text="Check"
  111. android:textColor="#ffffff"
  112.  
  113. />
  114. </LinearLayout>
  115.  
  116.  
  117. <android.support.v7.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
  118. xmlns:app="http://schemas.android.com/apk/res-auto"
  119. android:layout_width="wrap_content"
  120. android:layout_height="wrap_content"
  121. android:layout_below="@+id/check_linear"
  122. app:alignmentMode="alignBounds"
  123. app:columnCount="4"
  124. app:columnOrderPreserved="false"
  125. app:orientation="horizontal"
  126. app:rowCount="5"
  127. app:useDefaultMargins="false">
  128.  
  129. <Button
  130. android:id="@+id/button7"
  131. android:layout_width="wrap_content"
  132. android:layout_height="wrap_content"
  133.  
  134. android:layout_marginBottom="5dp"
  135. android:layout_marginLeft="5dp"
  136. android:layout_marginRight="5dp"
  137. android:layout_marginTop="5dp"
  138. android:background="@drawable/roundedbutton"
  139. android:text="7"
  140. android:textColor="#ffffff"
  141.  
  142. app:layout_row="1" />
  143.  
  144. <Button
  145. android:id="@+id/button8"
  146. android:layout_width="wrap_content"
  147. android:layout_height="wrap_content"
  148. android:layout_marginBottom="5dp"
  149. android:layout_marginLeft="5dp"
  150. android:layout_marginRight="5dp"
  151. android:layout_marginTop="5dp"
  152. android:background="@drawable/roundedbutton"
  153. android:text="8"
  154. android:textColor="#ffffff"
  155. app:layout_row="1" />
  156.  
  157. <Button
  158. android:id="@+id/button9"
  159. android:layout_width="wrap_content"
  160. android:layout_height="wrap_content"
  161. android:layout_marginBottom="5dp"
  162. android:layout_marginLeft="5dp"
  163. android:layout_marginRight="5dp"
  164. android:layout_marginTop="5dp"
  165. android:background="@drawable/roundedbutton"
  166. android:text="9"
  167. android:textColor="#ffffff"
  168. app:layout_column="2"
  169. app:layout_row="1" />
  170.  
  171.  
  172. <Button
  173. android:id="@+id/buttonDel"
  174. android:layout_width="wrap_content"
  175. android:layout_height="wrap_content"
  176. android:layout_marginBottom="5dp"
  177. android:layout_marginLeft="5dp"
  178. android:layout_marginRight="5dp"
  179. android:layout_marginTop="5dp"
  180. android:background="@drawable/roundedwhite"
  181. android:text="Del"
  182. android:textColor="#191919"
  183.  
  184.  
  185. app:layout_column="3"
  186. app:layout_row="1"
  187. app:layout_rowSpan="2"
  188. app:layout_gravity="fill_vertical"
  189.  
  190. />
  191.  
  192.  
  193. <Button
  194. android:id="@+id/button4"
  195. android:layout_width="wrap_content"
  196. android:layout_height="wrap_content"
  197. android:layout_marginBottom="5dp"
  198.  
  199. android:background="@drawable/roundedbutton"
  200. android:text="4"
  201. android:textColor="#ffffff"
  202. app:layout_column="0"
  203.  
  204. app:layout_row="2" />
  205.  
  206. <Button
  207. android:id="@+id/button5"
  208. android:layout_width="wrap_content"
  209. android:layout_height="wrap_content"
  210. android:background="@drawable/roundedbutton"
  211.  
  212. android:text="5"
  213. android:textColor="#ffffff"
  214. app:layout_column="1"
  215. app:layout_row="2" />
  216.  
  217. <Button
  218. android:id="@+id/button6"
  219. android:layout_width="wrap_content"
  220. android:layout_height="wrap_content"
  221.  
  222. android:background="@drawable/roundedbutton"
  223. android:text="6"
  224. android:textColor="#ffffff"
  225. app:layout_column="2"
  226.  
  227. app:layout_row="2" />
  228.  
  229.  
  230. <Button
  231. android:id="@+id/button1"
  232. android:layout_width="wrap_content"
  233. android:layout_height="wrap_content"
  234. android:layout_marginBottom="5dp"
  235. android:layout_weight="1"
  236. android:background="@drawable/roundedbutton"
  237. android:text="1"
  238. android:textColor="#ffffff"
  239.  
  240. app:layout_column="0"
  241. app:layout_row="3" />
  242.  
  243. <Button
  244. android:id="@+id/button2"
  245. android:layout_width="wrap_content"
  246. android:layout_height="wrap_content"
  247. android:background="@drawable/roundedbutton"
  248. android:text="2"
  249. android:textColor="#ffffff"
  250. app:layout_column="1"
  251. app:layout_row="3" />
  252.  
  253.  
  254. <Button
  255. android:id="@+id/button3"
  256. android:layout_width="wrap_content"
  257. android:layout_height="wrap_content"
  258. android:background="@drawable/roundedbutton"
  259. android:text="3"
  260. android:textColor="#ffffff"
  261. app:layout_column="2"
  262. app:layout_row="3" />
  263.  
  264. <Button
  265. android:id="@+id/buttonclear"
  266. android:layout_width="wrap_content"
  267. android:layout_height="wrap_content"
  268. android:background="@drawable/roundedwhite"
  269. android:text="Clear"
  270. android:textColor="#191919"
  271. app:layout_gravity="fill_vertical"
  272. app:layout_row="3"
  273. app:layout_rowSpan="2"/>
  274.  
  275. <Button
  276. android:id="@+id/button0"
  277. android:layout_width="wrap_content"
  278. android:layout_height="wrap_content"
  279. android:layout_marginRight="2dp"
  280. android:layout_weight="2"
  281. android:background="@drawable/roundedbutton"
  282. android:text="0"
  283. android:textColor="#ffffff"
  284. app:layout_column="0"
  285. app:layout_columnSpan="2"
  286.  
  287. app:layout_columnWeight="2"
  288. app:layout_gravity="fill_horizontal"
  289. app:layout_row="4" />
  290.  
  291. <Button
  292. android:id="@+id/btn55"
  293. android:layout_width="wrap_content"
  294. android:layout_height="wrap_content"
  295. android:background="@drawable/roundedbutton"
  296. android:text="."
  297. android:textColor="#ffffff"
  298. app:layout_column="2"
  299. app:layout_row="4" />
  300.  
  301.  
  302. </android.support.v7.widget.GridLayout>
  303.  
  304.  
  305. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement