Advertisement
Guest User

Untitled

a guest
Dec 12th, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.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:fontspace="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7.  
  8. <LinearLayout
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentBottom="true" >
  12.  
  13. <RelativeLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent" >
  16.  
  17. <com.example.classes.FontImageButton
  18. android:id="@+id/qButton"
  19. style="@style/button"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:textSize="18sp"
  23.  
  24. android:text="q" />
  25.  
  26. <com.example.classes.FontImageButton
  27. style="@style/button"
  28. android:id="@+id/wButton"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_toRightOf="@+id/qButton"
  32. android:textSize="18sp"
  33.  
  34. android:text="w"/>
  35.  
  36. <com.example.classes.FontImageButton
  37. style="@style/button"
  38. android:id="@+id/eButton"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:layout_toRightOf="@+id/wButton"
  42. android:textSize="18sp"
  43.  
  44. android:text="e"/>
  45.  
  46. <com.example.classes.FontImageButton
  47. style="@style/button"
  48. android:id="@+id/rButton"
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_toRightOf="@+id/eButton"
  52. android:textSize="18sp"
  53.  
  54. android:text="r"/>
  55.  
  56. <com.example.classes.FontImageButton
  57. style="@style/button"
  58. android:id="@+id/tButton"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:layout_toRightOf="@+id/rButton"
  62. android:textSize="18sp"
  63.  
  64. android:text="t"/>
  65.  
  66. <com.example.classes.FontImageButton
  67. style="@style/button"
  68. android:id="@+id/zButton"
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:layout_toRightOf="@+id/tButton"
  72. android:textSize="18sp"
  73.  
  74. android:text="z"/>
  75.  
  76. <com.example.classes.FontImageButton
  77. style="@style/button"
  78. android:id="@+id/uButton"
  79. android:layout_width="wrap_content"
  80. android:layout_height="wrap_content"
  81. android:layout_toRightOf="@+id/zButton"
  82. android:textSize="18sp"
  83.  
  84. android:text="u"/>
  85.  
  86. <com.example.classes.FontImageButton
  87. style="@style/button"
  88. android:id="@+id/iButton"
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:layout_toRightOf="@+id/uButton"
  92. android:textSize="18sp"
  93.  
  94. android:text="i"/>
  95.  
  96. <com.example.classes.FontImageButton
  97. style="@style/button"
  98. android:id="@+id/oButton"
  99. android:layout_width="wrap_content"
  100. android:layout_height="wrap_content"
  101. android:layout_toRightOf="@+id/iButton"
  102. android:textSize="18sp"
  103.  
  104. android:text="o"/>
  105.  
  106. <com.example.classes.FontImageButton
  107. style="@style/button"
  108. android:id="@+id/pButton"
  109. android:layout_width="wrap_content"
  110. android:layout_height="wrap_content"
  111. android:layout_toRightOf="@+id/oButton"
  112. android:textSize="18sp"
  113.  
  114. android:text="p"/>
  115.  
  116. <com.example.classes.FontImageButton
  117. android:id="@+id/aButton"
  118. style="@style/button"
  119. android:layout_width="wrap_content"
  120. android:layout_height="wrap_content"
  121. android:layout_below="@+id/qButton"
  122. android:textSize="18sp"
  123.  
  124. android:text="a" />
  125.  
  126. <com.example.classes.FontImageButton
  127. android:id="@+id/sButton"
  128. style="@style/button"
  129. android:layout_width="wrap_content"
  130. android:layout_height="wrap_content"
  131. android:layout_below="@+id/wButton"
  132. android:layout_toRightOf="@+id/aButton"
  133. android:textSize="18sp"
  134.  
  135. android:text="s" />
  136.  
  137. <com.example.classes.FontImageButton
  138. android:id="@+id/dButton"
  139. style="@style/button"
  140. android:layout_width="wrap_content"
  141. android:layout_height="wrap_content"
  142. android:layout_below="@+id/eButton"
  143. android:layout_toRightOf="@+id/sButton"
  144. android:textSize="18sp"
  145.  
  146. android:text="d" />
  147.  
  148. <com.example.classes.FontImageButton
  149. android:id="@+id/fButton"
  150. style="@style/button"
  151. android:layout_width="wrap_content"
  152. android:layout_height="wrap_content"
  153. android:layout_below="@+id/rButton"
  154. android:layout_toRightOf="@+id/dButton"
  155. android:textSize="18sp"
  156.  
  157. android:text="f" />
  158.  
  159. <com.example.classes.FontImageButton
  160. android:id="@+id/gButton"
  161. style="@style/button"
  162. android:layout_width="wrap_content"
  163. android:layout_height="wrap_content"
  164. android:layout_below="@+id/tButton"
  165. android:layout_toRightOf="@+id/fButton"
  166. android:textSize="18sp"
  167.  
  168. android:text="g" />
  169.  
  170. <com.example.classes.FontImageButton
  171. android:id="@+id/hButton"
  172. style="@style/button"
  173. android:layout_width="wrap_content"
  174. android:layout_height="wrap_content"
  175. android:layout_below="@+id/zButton"
  176. android:layout_toRightOf="@+id/gButton"
  177. android:textSize="18sp"
  178.  
  179. android:text="h" />
  180.  
  181. <com.example.classes.FontImageButton
  182. android:id="@+id/jButton"
  183. style="@style/button"
  184. android:layout_width="wrap_content"
  185. android:layout_height="wrap_content"
  186. android:layout_below="@+id/uButton"
  187. android:layout_toRightOf="@+id/hButton"
  188. android:textSize="18sp"
  189.  
  190. android:text="j" />
  191.  
  192. <com.example.classes.FontImageButton
  193. android:id="@+id/kButton"
  194. style="@style/button"
  195. android:layout_width="wrap_content"
  196. android:layout_height="wrap_content"
  197. android:layout_below="@+id/iButton"
  198. android:layout_toRightOf="@+id/jButton"
  199. android:textSize="18sp"
  200.  
  201. android:text="k" />
  202.  
  203. <com.example.classes.FontImageButton
  204. android:id="@+id/lButton"
  205. style="@style/button"
  206. android:layout_width="wrap_content"
  207. android:layout_height="wrap_content"
  208. android:layout_below="@+id/iButton"
  209. android:layout_toRightOf="@+id/kButton"
  210. android:textSize="18sp"
  211.  
  212. android:text="l" />
  213.  
  214. <com.example.classes.FontImageButton
  215. android:id="@+id/yButton"
  216. style="@style/button"
  217. android:layout_width="wrap_content"
  218. android:layout_height="wrap_content"
  219. android:layout_below="@+id/sButton"
  220. android:textSize="18sp"
  221.  
  222. android:text="y" />
  223.  
  224. <com.example.classes.FontImageButton
  225. android:id="@+id/xButton"
  226. style="@style/button"
  227. android:layout_width="wrap_content"
  228. android:layout_height="wrap_content"
  229. android:textSize="18sp"
  230. android:layout_below="@+id/dButton"
  231. android:layout_toRightOf="@+id/yButton"
  232.  
  233. android:text="x" />
  234.  
  235. <com.example.classes.FontImageButton
  236. android:id="@+id/cButton"
  237. style="@style/button"
  238. android:layout_width="wrap_content"
  239. android:layout_height="wrap_content"
  240. android:textSize="18sp"
  241. android:layout_below="@+id/fButton"
  242. android:layout_toRightOf="@+id/xButton"
  243.  
  244. android:text="c" />
  245.  
  246. <com.example.classes.FontImageButton
  247. android:id="@+id/vButton"
  248. style="@style/button"
  249. android:layout_width="wrap_content"
  250. android:textSize="18sp"
  251. android:layout_height="wrap_content"
  252. android:layout_below="@+id/gButton"
  253. android:layout_toRightOf="@+id/cButton"
  254.  
  255. android:text="v" />
  256.  
  257. <com.example.classes.FontImageButton
  258. android:id="@+id/bButton"
  259. style="@style/button"
  260. android:layout_width="wrap_content"
  261. android:textSize="18sp"
  262. android:layout_height="wrap_content"
  263. android:layout_below="@+id/hButton"
  264. android:layout_toRightOf="@+id/vButton"
  265.  
  266. android:text="b" />
  267.  
  268. <com.example.classes.FontImageButton
  269. android:id="@+id/nButton"
  270. style="@style/button"
  271. android:layout_width="wrap_content"
  272. android:textSize="18sp"
  273. android:layout_height="wrap_content"
  274. android:layout_below="@+id/jButton"
  275. android:layout_toRightOf="@+id/bButton"
  276.  
  277. android:text="n" />
  278.  
  279. <com.example.classes.FontImageButton
  280. android:id="@+id/mButton"
  281. style="@style/button"
  282. android:layout_width="wrap_content"
  283. android:textSize="18sp"
  284. android:layout_height="wrap_content"
  285. android:layout_below="@+id/kButton"
  286. android:layout_toRightOf="@+id/nButton"
  287.  
  288. android:text="m" />
  289.  
  290. <com.example.classes.FontImageButton
  291. android:id="@+id/backspaceButton"
  292. style="@style/button"
  293. android:layout_width="wrap_content"
  294. android:layout_height="wrap_content"
  295. android:layout_toRightOf="@+id/lButton"
  296. android:layout_below="@+id/pButton"
  297. android:text="" />
  298.  
  299. <com.example.classes.FontImageButton
  300. android:id="@+id/enterButton"
  301. style="@style/button"
  302. android:layout_width="wrap_content"
  303. android:layout_height="wrap_content"
  304. android:layout_alignParentRight="true"
  305. android:layout_below="@+id/kButton"
  306. android:layout_marginRight="2dp"
  307. android:text="" />
  308. </RelativeLayout>
  309. </LinearLayout>
  310.  
  311.  
  312.  
  313. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement