/ime/latinime/res/xml/kbd_phone_symbols.xml

http://eyes-free.googlecode.com/ · XML · 102 lines · 80 code · 1 blank · 21 comment · 0 complexity · d273dc693e6c4a39feebe1b006a46855 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. /*
  4. **
  5. ** Copyright 2008, The Android Open Source Project
  6. **
  7. ** Licensed under the Apache License, Version 2.0 (the "License");
  8. ** you may not use this file except in compliance with the License.
  9. ** You may obtain a copy of the License at
  10. **
  11. ** http://www.apache.org/licenses/LICENSE-2.0
  12. **
  13. ** Unless required by applicable law or agreed to in writing, software
  14. ** distributed under the License is distributed on an "AS IS" BASIS,
  15. ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. ** See the License for the specific language governing permissions and
  17. ** limitations under the License.
  18. */
  19. -->
  20. <Keyboard
  21. xmlns:android="http://schemas.android.com/apk/res/android"
  22. android:keyWidth="26.67%p"
  23. android:horizontalGap="0px"
  24. android:verticalGap="@dimen/key_bottom_gap"
  25. android:keyHeight="@dimen/key_height"
  26. >
  27. <Row
  28. android:rowEdgeFlags="top"
  29. >
  30. <Key
  31. android:keyLabel="("
  32. android:keyEdgeFlags="left" />
  33. <Key
  34. android:keyLabel="/" />
  35. <Key
  36. android:keyLabel=")" />
  37. <Key
  38. android:keyLabel="-"
  39. android:keyWidth="20%p"
  40. android:isModifier="true"
  41. android:keyEdgeFlags="right" />
  42. </Row>
  43. <Row>
  44. <Key
  45. android:keyLabel="N"
  46. android:keyEdgeFlags="left" />
  47. <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this
  48. has changed. -->
  49. <Key
  50. android:codes="44"
  51. android:keyLabel="Pause" />
  52. <Key
  53. android:keyLabel="," />
  54. <Key
  55. android:keyLabel="."
  56. android:keyWidth="20%p"
  57. android:isModifier="true"
  58. android:keyEdgeFlags="right" />
  59. </Row>
  60. <Row>
  61. <Key
  62. android:codes="42"
  63. android:keyIcon="@drawable/sym_keyboard_numstar"
  64. android:keyEdgeFlags="left" />
  65. <!-- Wait is a semicolon. -->
  66. <Key
  67. android:codes="59"
  68. android:keyLabel="Wait" />
  69. <Key
  70. android:codes="35"
  71. android:keyIcon="@drawable/sym_keyboard_numpound" />
  72. <Key
  73. android:codes="@integer/key_delete"
  74. android:keyIcon="@drawable/sym_keyboard_delete"
  75. android:iconPreview="@drawable/sym_keyboard_feedback_delete"
  76. android:keyWidth="20%p"
  77. android:isModifier="true"
  78. android:isRepeatable="true"
  79. android:keyEdgeFlags="right" />
  80. </Row>
  81. <Row
  82. android:rowEdgeFlags="bottom"
  83. >
  84. <Key
  85. android:codes="@integer/key_symbol"
  86. android:keyLabel="@string/label_phone_key"
  87. android:keyEdgeFlags="left" />
  88. <Key
  89. android:keyLabel="+" />
  90. <Key
  91. android:codes="@integer/key_space"
  92. android:keyIcon="@drawable/sym_keyboard_space"
  93. android:iconPreview="@drawable/sym_keyboard_feedback_space" />
  94. <Key
  95. android:codes="@integer/key_return"
  96. android:keyIcon="@drawable/sym_keyboard_return"
  97. android:keyWidth="20%p"
  98. android:isModifier="true"
  99. android:keyEdgeFlags="right" />
  100. </Row>
  101. </Keyboard>