The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | ** |
| 5 | ** Copyright 2008, The Android Open Source Project |
| 6 | ** |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 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 |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 10 | ** |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 11 | ** http://www.apache.org/licenses/LICENSE-2.0 |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 12 | ** |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 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 |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 17 | ** limitations under the License. |
| 18 | */ |
| 19 | --> |
| 20 | |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 21 | <!-- TODO: Add settings key to other languages --> |
| 22 | <!-- TODO: Add modifier attr to functional keys in other languages --> |
| 23 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 24 | <Keyboard xmlns:android="http://schemas.android.com/apk/res/android" |
| 25 | android:keyWidth="10%p" |
| 26 | android:horizontalGap="0px" |
| 27 | android:verticalGap="0px" |
| 28 | android:keyHeight="@dimen/key_height" |
| 29 | > |
| 30 | |
| 31 | <Row> |
Tadashi G. Takaoka | 3b4ecde | 2010-09-02 21:06:30 +0900 | [diff] [blame] | 32 | <Key android:codes="113" android:keyLabel="q" android:keyEdgeFlags="left" |
| 33 | android:popupKeyboard="@xml/kbd_popup_template" |
| 34 | android:popupCharacters="@string/alternates_for_q" |
| 35 | /> |
| 36 | <Key android:codes="119" android:keyLabel="w" |
| 37 | android:popupKeyboard="@xml/kbd_popup_template" |
| 38 | android:popupCharacters="@string/alternates_for_w" |
| 39 | /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 40 | <Key android:codes="101" android:keyLabel="e" |
| 41 | android:popupKeyboard="@xml/kbd_popup_template" |
| 42 | android:popupCharacters="@string/alternates_for_e" |
| 43 | /> |
Amith Yamasani | 4cc3a58 | 2009-03-24 18:05:24 -0700 | [diff] [blame] | 44 | <Key android:codes="114" android:keyLabel="r" |
| 45 | android:popupKeyboard="@xml/kbd_popup_template" |
Tadashi G. Takaoka | 3b4ecde | 2010-09-02 21:06:30 +0900 | [diff] [blame] | 46 | android:popupCharacters="@string/alternates_for_r" |
| 47 | /> |
Amith Yamasani | 4cc3a58 | 2009-03-24 18:05:24 -0700 | [diff] [blame] | 48 | <Key android:codes="116" android:keyLabel="t" |
| 49 | android:popupKeyboard="@xml/kbd_popup_template" |
Tadashi G. Takaoka | 3b4ecde | 2010-09-02 21:06:30 +0900 | [diff] [blame] | 50 | android:popupCharacters="@string/alternates_for_t" |
| 51 | /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 52 | <Key android:codes="121" android:keyLabel="y" |
| 53 | android:popupKeyboard="@xml/kbd_popup_template" |
| 54 | android:popupCharacters="@string/alternates_for_y" |
| 55 | /> |
| 56 | <Key android:codes="117" android:keyLabel="u" |
| 57 | android:popupKeyboard="@xml/kbd_popup_template" |
| 58 | android:popupCharacters="@string/alternates_for_u" |
| 59 | /> |
Mike LeBeau | 466741d | 2010-01-16 12:21:23 -0800 | [diff] [blame] | 60 | <Key android:codes="105" android:keyLabel="i" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 61 | android:popupKeyboard="@xml/kbd_popup_template" |
| 62 | android:popupCharacters="@string/alternates_for_i" |
| 63 | /> |
| 64 | <Key android:codes="111" android:keyLabel="o" |
| 65 | android:popupKeyboard="@xml/kbd_popup_template" |
| 66 | android:popupCharacters="@string/alternates_for_o" |
| 67 | /> |
Tadashi G. Takaoka | 3b4ecde | 2010-09-02 21:06:30 +0900 | [diff] [blame] | 68 | <Key android:codes="112" android:keyLabel="p" android:keyEdgeFlags="right" |
| 69 | android:popupKeyboard="@xml/kbd_popup_template" |
| 70 | android:popupCharacters="@string/alternates_for_p" |
| 71 | /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 72 | </Row> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 73 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 74 | <Row> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 75 | <Key android:codes="97" android:keyLabel="a" android:horizontalGap="5%p" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 76 | android:popupKeyboard="@xml/kbd_popup_template" |
| 77 | android:popupCharacters="@string/alternates_for_a" |
| 78 | android:keyEdgeFlags="left"/> |
| 79 | <Key android:codes="115" android:keyLabel="s" |
| 80 | android:popupKeyboard="@xml/kbd_popup_template" |
| 81 | android:popupCharacters="@string/alternates_for_s" |
| 82 | /> |
Amith Yamasani | 4cc3a58 | 2009-03-24 18:05:24 -0700 | [diff] [blame] | 83 | <Key android:codes="100" android:keyLabel="d" |
| 84 | android:popupKeyboard="@xml/kbd_popup_template" |
| 85 | android:popupCharacters="@string/alternates_for_d"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 86 | <Key android:codes="102" android:keyLabel="f"/> |
Amith Yamasani | 0a2df34 | 2010-03-04 04:43:15 -0800 | [diff] [blame] | 87 | <Key android:codes="103" android:keyLabel="g" |
| 88 | android:popupKeyboard="@xml/kbd_popup_template" |
| 89 | android:popupCharacters="@string/alternates_for_g" |
| 90 | /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 91 | <Key android:codes="104" android:keyLabel="h"/> |
| 92 | <Key android:codes="106" android:keyLabel="j"/> |
| 93 | <Key android:codes="107" android:keyLabel="k"/> |
Mike LeBeau | 466741d | 2010-01-16 12:21:23 -0800 | [diff] [blame] | 94 | <Key android:codes="108" android:keyLabel="l" |
Amith Yamasani | 864fcbd | 2009-04-13 15:35:08 -0700 | [diff] [blame] | 95 | android:popupKeyboard="@xml/kbd_popup_template" |
| 96 | android:popupCharacters="@string/alternates_for_l" |
| 97 | android:keyEdgeFlags="right"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 98 | </Row> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 99 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 100 | <Row> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 101 | <Key android:codes="-1" android:keyIcon="@drawable/sym_keyboard_shift" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 102 | android:keyWidth="15%p" android:isModifier="true" |
| 103 | android:iconPreview="@drawable/sym_keyboard_feedback_shift" |
| 104 | android:isSticky="true" android:keyEdgeFlags="left"/> |
Amith Yamasani | 4cc3a58 | 2009-03-24 18:05:24 -0700 | [diff] [blame] | 105 | <Key android:codes="122" android:keyLabel="z" |
| 106 | android:popupKeyboard="@xml/kbd_popup_template" |
| 107 | android:popupCharacters="@string/alternates_for_z"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 108 | <Key android:codes="120" android:keyLabel="x"/> |
| 109 | <Key android:codes="99" android:keyLabel="c" |
| 110 | android:popupKeyboard="@xml/kbd_popup_template" |
| 111 | android:popupCharacters="@string/alternates_for_c" |
| 112 | /> |
| 113 | <Key android:codes="118" android:keyLabel="v"/> |
| 114 | <Key android:codes="98" android:keyLabel="b"/> |
| 115 | <Key android:codes="110" android:keyLabel="n" |
| 116 | android:popupKeyboard="@xml/kbd_popup_template" |
| 117 | android:popupCharacters="@string/alternates_for_n" |
| 118 | /> |
| 119 | <Key android:codes="109" android:keyLabel="m"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 120 | <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" |
| 121 | android:keyWidth="15%p" android:keyEdgeFlags="right" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 122 | android:iconPreview="@drawable/sym_keyboard_feedback_delete" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 123 | android:isRepeatable="true" android:isModifier="true"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 124 | </Row> |
| 125 | |
| 126 | <Row android:keyboardMode="@+id/mode_normal" android:rowEdgeFlags="bottom"> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 127 | <Key android:codes="-2" android:keyLabel="@string/label_symbol_key" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 128 | android:keyWidth="15%p" android:keyEdgeFlags="left" android:isModifier="true"/> |
satok | 673aed4 | 2010-08-30 18:38:36 +0900 | [diff] [blame] | 129 | <Key android:codes="@integer/key_settings" android:keyIcon="@drawable/sym_keyboard_settings" |
| 130 | android:iconPreview="@drawable/sym_keyboard_feedback_settings" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 131 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 132 | <Key android:codes="@integer/key_f1" android:keyIcon="@drawable/sym_keyboard_mic" |
| 133 | android:iconPreview="@drawable/sym_keyboard_feedback_mic" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 134 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 135 | <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 136 | android:iconPreview="@drawable/sym_keyboard_feedback_space" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 137 | android:keyWidth="30%p" android:isRepeatable="true" android:isModifier="true"/> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 138 | <Key android:codes="46" android:keyLabel="." android:popupKeyboard="@xml/popup_punctuation" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 139 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 140 | <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_return" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 141 | android:iconPreview="@drawable/sym_keyboard_feedback_return" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 142 | android:keyWidth="25%p" android:keyEdgeFlags="right" android:isModifier="true"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 143 | </Row> |
| 144 | |
| 145 | <Row android:keyboardMode="@+id/mode_url" android:rowEdgeFlags="bottom"> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 146 | <Key android:codes="-2" android:keyLabel="@string/label_symbol_key" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 147 | android:keyWidth="15%p" android:keyEdgeFlags="left" android:isModifier="true"/> |
satok | 673aed4 | 2010-08-30 18:38:36 +0900 | [diff] [blame] | 148 | <Key android:codes="@integer/key_settings" android:keyIcon="@drawable/sym_keyboard_settings" |
| 149 | android:iconPreview="@drawable/sym_keyboard_feedback_settings" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 150 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 151 | <Key android:keyLabel="/" android:keyWidth="10%p"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 152 | <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 153 | android:iconPreview="@drawable/sym_keyboard_feedback_space" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 154 | android:keyWidth="30%p" android:isRepeatable="true" android:isModifier="true"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 155 | <Key android:keyLabel="." android:popupKeyboard="@xml/popup_punctuation" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 156 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 157 | <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_return" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 158 | android:iconPreview="@drawable/sym_keyboard_feedback_return" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 159 | android:keyWidth="25%p" android:keyEdgeFlags="right" android:isModifier="true"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 160 | </Row> |
| 161 | |
| 162 | <Row android:keyboardMode="@+id/mode_email" android:rowEdgeFlags="bottom"> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 163 | <Key android:codes="-2" android:keyLabel="@string/label_symbol_key" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 164 | android:keyWidth="15%p" android:keyEdgeFlags="left" android:isModifier="true"/> |
satok | 673aed4 | 2010-08-30 18:38:36 +0900 | [diff] [blame] | 165 | <Key android:codes="@integer/key_settings" android:keyIcon="@drawable/sym_keyboard_settings" |
| 166 | android:iconPreview="@drawable/sym_keyboard_feedback_settings" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 167 | android:keyWidth="10%p" android:isModifier="true"/> |
satok | d27c7ae | 2010-09-06 20:18:25 +0900 | [diff] [blame] | 168 | <Key android:keyLabel="\@" android:isModifier="true"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 169 | <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 170 | android:iconPreview="@drawable/sym_keyboard_feedback_space" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 171 | android:keyWidth="30%p" android:isRepeatable="true" android:isModifier="true"/> |
satok | d27c7ae | 2010-09-06 20:18:25 +0900 | [diff] [blame] | 172 | <Key android:keyLabel="." android:popupKeyboard="@xml/popup_punctuation" android:isModifier="true"/> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 173 | <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_return" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 174 | android:iconPreview="@drawable/sym_keyboard_feedback_return" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 175 | android:keyWidth="25%p" android:keyEdgeFlags="right" android:isModifier="true"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 176 | </Row> |
| 177 | |
| 178 | <Row android:keyboardMode="@+id/mode_im" android:rowEdgeFlags="bottom"> |
Amith Yamasani | ffa3fdd | 2009-08-19 15:16:33 -0700 | [diff] [blame] | 179 | <Key android:codes="-2" android:keyLabel="@string/label_symbol_key" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 180 | android:keyWidth="15%p" android:keyEdgeFlags="left" android:isModifier="true"/> |
satok | 673aed4 | 2010-08-30 18:38:36 +0900 | [diff] [blame] | 181 | <Key android:codes="@integer/key_settings" android:keyIcon="@drawable/sym_keyboard_settings" |
| 182 | android:iconPreview="@drawable/sym_keyboard_feedback_settings" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 183 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 184 | <Key android:codes="@integer/key_f1" android:keyIcon="@drawable/sym_keyboard_mic" |
Mike LeBeau | 466741d | 2010-01-16 12:21:23 -0800 | [diff] [blame] | 185 | android:iconPreview="@drawable/sym_keyboard_feedback_mic" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 186 | android:keyWidth="10%p" android:isModifier="true"/> |
Mike LeBeau | 466741d | 2010-01-16 12:21:23 -0800 | [diff] [blame] | 187 | <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" |
| 188 | android:iconPreview="@drawable/sym_keyboard_feedback_space" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 189 | android:keyWidth="30%p" android:isRepeatable="true" android:isModifier="true"/> |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 190 | <Key android:codes="46" android:keyLabel="." android:popupKeyboard="@xml/popup_punctuation" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 191 | android:keyWidth="10%p" android:isModifier="true"/> |
Mike LeBeau | 466741d | 2010-01-16 12:21:23 -0800 | [diff] [blame] | 192 | <Key android:keyLabel=":-)" android:keyOutputText=":-) " |
| 193 | android:popupKeyboard="@xml/popup_smileys" |
satok | d383364 | 2010-09-02 12:57:07 +0900 | [diff] [blame] | 194 | android:keyWidth="25%p" android:keyEdgeFlags="right" android:isModifier="true"/> |
Mike LeBeau | 466741d | 2010-01-16 12:21:23 -0800 | [diff] [blame] | 195 | </Row> |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 196 | |
| 197 | <Row android:keyboardMode="@+id/mode_webentry" android:rowEdgeFlags="bottom"> |
| 198 | <Key android:codes="-2" android:keyLabel="@string/label_symbol_key" |
Ken Wakasa | a8d9702 | 2010-09-05 21:59:43 +0900 | [diff] [blame] | 199 | android:keyWidth="15%p" android:keyEdgeFlags="left" android:isModifier="true"/> |
satok | 673aed4 | 2010-08-30 18:38:36 +0900 | [diff] [blame] | 200 | <Key android:codes="@integer/key_settings" android:keyIcon="@drawable/sym_keyboard_settings" |
| 201 | android:iconPreview="@drawable/sym_keyboard_feedback_settings" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 202 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 203 | <Key android:codes="@integer/key_f1" android:keyIcon="@drawable/sym_keyboard_mic" |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 204 | android:iconPreview="@drawable/sym_keyboard_feedback_mic" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 205 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 206 | <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" |
| 207 | android:iconPreview="@drawable/sym_keyboard_feedback_space" |
Ken Wakasa | a8d9702 | 2010-09-05 21:59:43 +0900 | [diff] [blame] | 208 | android:keyWidth="30%p" android:isRepeatable="true" android:isModifier="true"/> |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 209 | <Key android:codes="9" android:keyIcon="@drawable/sym_keyboard_tab" |
| 210 | android:iconPreview="@drawable/sym_keyboard_feedback_tab" |
Ken Wakasa | a8d9702 | 2010-09-05 21:59:43 +0900 | [diff] [blame] | 211 | android:keyWidth="10%p" android:isModifier="true"/> |
satok | 673aed4 | 2010-08-30 18:38:36 +0900 | [diff] [blame] | 212 | <Key android:keyLabel="." android:popupKeyboard="@xml/popup_punctuation" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 213 | android:keyWidth="10%p" android:isModifier="true"/> |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 214 | <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_return" |
| 215 | android:iconPreview="@drawable/sym_keyboard_feedback_return" |
satok | dd8dd9f | 2010-09-01 23:33:43 +0900 | [diff] [blame] | 216 | android:keyWidth="15%p" android:keyEdgeFlags="right" android:isModifier="true"/> |
Amith Yamasani | cf02653 | 2010-01-26 21:25:29 -0800 | [diff] [blame] | 217 | </Row> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 218 | </Keyboard> |