/ime/latinime/res/xml/kbd_phone_symbols_black.xml

http://eyes-free.googlecode.com/ · XML · 98 lines · 76 code · 1 blank · 21 comment · 0 complexity · 9858559cfcbb58939c79a5bff00223ce MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. /*
  4. **
  5. ** Copyright 2010, 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:keyEdgeFlags="right" />
  41. </Row>
  42. <Row>
  43. <Key
  44. android:keyLabel="N"
  45. android:keyEdgeFlags="left" />
  46. <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this
  47. has changed. -->
  48. <Key
  49. android:codes="44"
  50. android:keyLabel="Pause" />
  51. <Key
  52. android:keyLabel="," />
  53. <Key
  54. android:keyLabel="."
  55. android:keyWidth="20%p"
  56. android:keyEdgeFlags="right" />
  57. </Row>
  58. <Row>
  59. <Key
  60. android:codes="42"
  61. android:keyIcon="@drawable/sym_bkeyboard_numstar"
  62. android:keyEdgeFlags="left" />
  63. <!-- Wait is a semicolon. -->
  64. <Key
  65. android:codes="59"
  66. android:keyLabel="Wait" />
  67. <Key
  68. android:codes="35"
  69. android:keyIcon="@drawable/sym_bkeyboard_numpound" />
  70. <Key
  71. android:codes="@integer/key_delete"
  72. android:keyIcon="@drawable/sym_bkeyboard_delete"
  73. android:iconPreview="@drawable/sym_keyboard_feedback_delete"
  74. android:keyWidth="20%p"
  75. android:isRepeatable="true"
  76. android:keyEdgeFlags="right" />
  77. </Row>
  78. <Row
  79. android:rowEdgeFlags="bottom"
  80. >
  81. <Key
  82. android:codes="@integer/key_symbol"
  83. android:keyLabel="@string/label_phone_key"
  84. android:keyEdgeFlags="left" />
  85. <Key
  86. android:keyLabel="+" />
  87. <Key
  88. android:codes="@integer/key_space"
  89. android:keyIcon="@drawable/sym_bkeyboard_space"
  90. android:iconPreview="@drawable/sym_keyboard_feedback_space" />
  91. <Key
  92. android:codes="@integer/key_return"
  93. android:keyIcon="@drawable/sym_bkeyboard_return"
  94. android:keyWidth="20%p"
  95. android:keyEdgeFlags="right" />
  96. </Row>
  97. </Keyboard>