/ime/latinime/res/xml/kbd_symbols_shift.xml
XML | 155 lines | 136 code | 1 blank | 18 comment | 0 complexity | 40fd30686b4756404c535cac8669dc3f 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 21<Keyboard 22 xmlns:android="http://schemas.android.com/apk/res/android" 23 android:keyWidth="10%p" 24 android:horizontalGap="0px" 25 android:verticalGap="@dimen/key_bottom_gap" 26 android:keyHeight="@dimen/key_height" 27> 28 <Row 29 android:rowEdgeFlags="top" 30 > 31 <Key 32 android:keyLabel="~" 33 android:keyEdgeFlags="left" /> 34 <Key 35 android:keyLabel="`" /> 36 <Key 37 android:keyLabel="|" /> 38 <Key 39 android:keyLabel="\#" /> 40 <Key 41 android:keyLabel="√" /> 42 <Key 43 android:keyLabel="π" 44 android:popupKeyboard="@xml/kbd_popup_template" 45 android:popupCharacters="Π" /> 46 <Key 47 android:keyLabel="÷" /> 48 <Key 49 android:keyLabel="×" /> 50 <Key 51 android:keyLabel="{" /> 52 <Key 53 android:keyLabel="}" 54 android:keyEdgeFlags="right" /> 55 </Row> 56 <Row> 57 <Key 58 android:keyLabel="£" 59 android:horizontalGap="5%p" 60 android:keyEdgeFlags="left" /> 61 <Key 62 android:keyLabel="¢" /> 63 <Key 64 android:keyLabel="€" /> 65 <Key 66 android:keyLabel="°" /> 67 <Key 68 android:keyLabel="^" 69 android:popupKeyboard="@xml/kbd_popup_template" 70 android:popupCharacters="↑↓←→" /> 71 <Key 72 android:keyLabel="_" /> 73 <Key 74 android:keyLabel="=" 75 android:popupKeyboard="@xml/kbd_popup_template" 76 android:popupCharacters="≠≈∞" /> 77 <Key 78 android:keyLabel="[" /> 79 <Key 80 android:keyLabel="]" 81 android:keyEdgeFlags="right" /> 82 </Row> 83 <Row> 84 <Key 85 android:codes="@integer/key_shift" 86 android:keyLabel="@string/label_alt_key" 87 android:keyWidth="15%p" 88 android:isModifier="true" 89 android:isSticky="true" 90 android:keyEdgeFlags="left" /> 91 <Key 92 android:keyLabel="™" /> 93 <Key 94 android:keyLabel="®" /> 95 <Key 96 android:keyLabel="©" /> 97 <Key 98 android:keyLabel="¶" 99 android:popupKeyboard="@xml/kbd_popup_template" 100 android:popupCharacters="§" /> 101 <Key 102 android:keyLabel="\\" /> 103 <Key 104 android:keyLabel="<" 105 android:popupKeyboard="@xml/kbd_popup_template" 106 android:popupCharacters="≤«‹" /> 107 <Key 108 android:keyLabel=">" 109 android:popupKeyboard="@xml/kbd_popup_template" 110 android:popupCharacters="≥»›" /> 111 <Key 112 android:codes="@integer/key_delete" 113 android:keyIcon="@drawable/sym_keyboard_delete" 114 android:iconPreview="@drawable/sym_keyboard_feedback_delete" 115 android:keyWidth="15%p" 116 android:isModifier="true" 117 android:isRepeatable="true" 118 android:keyEdgeFlags="right" /> 119 </Row> 120 <Row 121 android:keyboardMode="@+id/mode_symbols_with_settings_key" 122 android:rowEdgeFlags="bottom" 123 > 124 <Key 125 android:codes="@integer/key_symbol" 126 android:keyLabel="@string/label_alpha_key" 127 android:keyWidth="15%p" 128 android:isModifier="true" 129 android:keyEdgeFlags="left" /> 130 <Key 131 android:codes="@integer/key_settings" 132 android:keyIcon="@drawable/sym_keyboard_settings" 133 android:iconPreview="@drawable/sym_keyboard_feedback_settings" 134 android:isModifier="true" /> 135 <Key 136 android:keyLabel="„" 137 android:isModifier="true" /> 138 <Key 139 android:codes="@integer/key_space" 140 android:keyIcon="@drawable/sym_keyboard_space" 141 android:iconPreview="@drawable/sym_keyboard_feedback_space" 142 android:keyWidth="30%p" 143 android:isModifier="true" /> 144 <Key 145 android:keyLabel="…" 146 android:isModifier="true" /> 147 <Key 148 android:codes="@integer/key_return" 149 android:keyIcon="@drawable/sym_keyboard_return" 150 android:iconPreview="@drawable/sym_keyboard_feedback_return" 151 android:keyWidth="25%p" 152 android:isModifier="true" 153 android:keyEdgeFlags="right" /> 154 </Row> 155</Keyboard>