1
0

qwerty_symbols.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?xml version="1.0" encoding="utf-8"?><!--
  2. /*
  3. **
  4. ** Copyright 2008, The Android Open Source Project
  5. **
  6. ** Licensed under the Apache License, Version 2.0 (the "License");
  7. ** you may not use this file except in compliance with the License.
  8. ** You may obtain a copy of the License at
  9. **
  10. ** http://www.apache.org/licenses/LICENSE-2.0
  11. **
  12. ** Unless required by applicable law or agreed to in writing, software
  13. ** distributed under the License is distributed on an "AS IS" BASIS,
  14. ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ** See the License for the specific language governing permissions and
  16. ** limitations under the License.
  17. */
  18. -->
  19. <Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
  20. android:keyWidth="9%p"
  21. android:horizontalGap="0px"
  22. android:verticalGap="0px"
  23. android:keyHeight="@dimen/keyboard_key_height">
  24. <Row>
  25. <Key
  26. android:codes="49"
  27. android:keyLabel="1"
  28. android:keyEdgeFlags="left" />
  29. <Key
  30. android:codes="50"
  31. android:keyLabel="2" />
  32. <Key
  33. android:codes="51"
  34. android:keyLabel="3" />
  35. <Key
  36. android:codes="52"
  37. android:keyLabel="4" />
  38. <Key
  39. android:codes="53"
  40. android:keyLabel="5" />
  41. <Key
  42. android:codes="54"
  43. android:keyLabel="6" />
  44. <Key
  45. android:codes="55"
  46. android:keyLabel="7" />
  47. <Key
  48. android:codes="56"
  49. android:keyLabel="8" />
  50. <Key
  51. android:codes="57"
  52. android:keyLabel="9" />
  53. <Key
  54. android:codes="48"
  55. android:keyLabel="0"
  56. android:keyEdgeFlags="right" />
  57. </Row>
  58. <Row>
  59. <Key
  60. android:codes="64"
  61. android:keyLabel="\@"
  62. android:keyEdgeFlags="left" />
  63. <Key
  64. android:codes="35"
  65. android:keyLabel="\#" />
  66. <Key
  67. android:codes="36"
  68. android:keyLabel="$" />
  69. <Key
  70. android:codes="37"
  71. android:keyLabel="%" />
  72. <Key
  73. android:codes="38"
  74. android:keyLabel="&amp;" />
  75. <Key
  76. android:codes="42"
  77. android:keyLabel="*" />
  78. <Key
  79. android:codes="45"
  80. android:keyLabel="-" />
  81. <Key
  82. android:codes="61"
  83. android:keyLabel="=" />
  84. <Key
  85. android:codes="40"
  86. android:keyLabel="(" />
  87. <Key
  88. android:codes="41"
  89. android:keyLabel=")"
  90. android:keyEdgeFlags="right" />
  91. </Row>
  92. <Row>
  93. <Key
  94. android:codes="@integer/id_keyboard_shift"
  95. android:keyIcon="@drawable/sym_keyboard_shift"
  96. android:keyWidth="15%p"
  97. android:isModifier="true"
  98. android:isSticky="true"
  99. android:keyEdgeFlags="left" />
  100. <Key
  101. android:codes="33"
  102. android:keyLabel="!" />
  103. <Key
  104. android:codes="34"
  105. android:keyLabel="&quot;" />
  106. <Key
  107. android:codes="39"
  108. android:keyLabel="\'" />
  109. <Key
  110. android:codes="58"
  111. android:keyLabel=":" />
  112. <Key
  113. android:codes="59"
  114. android:keyLabel=";" />
  115. <Key
  116. android:codes="47"
  117. android:keyLabel="/" />
  118. <Key
  119. android:codes="63"
  120. android:keyLabel="\?" />
  121. <Key
  122. android:codes="-5"
  123. android:keyIcon="@drawable/sym_keyboard_delete"
  124. android:keyWidth="15%p"
  125. android:keyEdgeFlags="right"
  126. android:isRepeatable="true" />
  127. </Row>
  128. <Row android:rowEdgeFlags="bottom">
  129. <Key
  130. android:codes="@integer/id_keyboard_numbers"
  131. android:keyLabel="ABC"
  132. android:keyWidth="10%p" />
  133. <Key
  134. android:codes="32"
  135. android:keyIcon="@drawable/sym_keyboard_space"
  136. android:keyWidth="30%p"
  137. android:isRepeatable="true" />
  138. <Key
  139. android:codes="44"
  140. android:keyLabel=","
  141. android:keyWidth="15%p" />
  142. </Row>
  143. </Keyboard>