Advertisement
minafaw3

validate_frag_small

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