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 21 <merge 22 xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" 23 > 24 <key-style 25 latin:styleName="shiftKeyStyle" 26 latin:code="@integer/key_shift" 27 latin:keyIcon="iconShiftKey" 28 latin:keyIconShifted="iconShiftedShiftKey" 29 latin:backgroundType="sticky" /> 30 <key-style 31 latin:styleName="deleteKeyStyle" 32 latin:code="@integer/key_delete" 33 latin:keyIcon="iconDeleteKey" 34 latin:backgroundType="functional" 35 latin:isRepeatable="true" /> 36 <key-style 37 latin:styleName="returnKeyStyle" 38 latin:code="@integer/key_return" 39 latin:keyIcon="iconReturnKey" 40 latin:backgroundType="functional" /> 41 <key-style 42 latin:styleName="spaceKeyStyle" 43 latin:code="@integer/key_space" /> 44 <key-style 45 latin:styleName="nonSpecialBackgroundSpaceKeyStyle" 46 latin:code="@integer/key_space" /> 47 <key-style 48 latin:styleName="smileyKeyStyle" 49 latin:keyLabel=":-)" 50 latin:keyOutputText=":-) " 51 latin:keyLabelOption="hasPopupHint" 52 latin:moreKeys="@string/more_keys_for_smiley" 53 latin:maxMoreKeysColumn="5" /> 54 <key-style 55 latin:styleName="settingsKeyStyle" 56 latin:code="@integer/key_settings" 57 latin:keyIcon="iconSettingsKey" 58 latin:backgroundType="functional" /> 59 <key-style 60 latin:styleName="shortcutKeyStyle" 61 latin:code="@integer/key_shortcut" 62 latin:keyIcon="iconShortcutKey" 63 latin:backgroundType="functional" /> 64 <key-style 65 latin:styleName="tabKeyStyle" 66 latin:code="@integer/key_tab" 67 latin:keyLabel="@string/label_tab_key" 68 latin:keyLabelOption="fontNormal" 69 latin:backgroundType="functional" /> 70 <key-style 71 latin:styleName="toSymbolKeyStyle" 72 latin:code="@integer/key_switch_alpha_symbol" 73 latin:keyLabel="@string/label_to_symbol_key" 74 latin:keyLabelOption="fontNormal" 75 latin:backgroundType="functional" /> 76 <key-style 77 latin:styleName="toAlphaKeyStyle" 78 latin:code="@integer/key_switch_alpha_symbol" 79 latin:keyLabel="@string/label_to_alpha_key" 80 latin:keyLabelOption="fontNormal" 81 latin:backgroundType="functional" /> 82 <key-style 83 latin:styleName="toMoreSymbolKeyStyle" 84 latin:code="@integer/key_shift" 85 latin:keyLabel="@string/label_to_more_symbol_for_tablet_key" 86 latin:keyLabelOption="fontNormal" 87 latin:backgroundType="functional" /> 88 <key-style 89 latin:styleName="backFromMoreSymbolKeyStyle" 90 latin:code="@integer/key_shift" 91 latin:keyLabel="@string/label_to_symbol_key" 92 latin:keyLabelOption="fontNormal" 93 latin:backgroundType="functional" /> 94 <key-style 95 latin:styleName="comKeyStyle" 96 latin:keyLabel="@string/keylabel_for_popular_domain" 97 latin:keyLabelOption="fontNormal|hasPopupHint" 98 latin:keyOutputText="@string/keylabel_for_popular_domain" 99 latin:moreKeys="@string/more_keys_for_popular_domain" /> 100 </merge> 101