1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 ** 5 ** Copyright 2013, 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 <!-- The code point U+25CC for key label is needed because the font rendering system prior to 22 API version 16 can't automatically render dotted circle for incomplete combining letter 23 of Hindi. The files named res/xml/{key,keys}_hindi*.xml have this U+25CC hack, although the 24 counterpart files named res/xml-v16/{key,keys}_hindi*.xml don't have this hack. --> 25 <merge 26 xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" 27 > 28 <!-- U+25CC: "" DOTTED CIRCLE 29 U+094C: "" DEVANAGARI VOWEL SIGN AU 30 U+094C/U+0902: "" DEVANAGARI VOWEL SIGN AU/DEVANAGARI SIGN ANUSVARA 31 U+0967: "" DEVANAGARI DIGIT ONE --> 32 <Key 33 latin:keyLabel="◌ौ" 34 latin:code="0x094C" 35 latin:moreKeys="◌ौं|ौं,%" 36 latin:keyHintLabel="1" 37 latin:additionalMoreKeys="१,1" 38 latin:keyLabelFlags="fontNormal|followKeyLetterRatio" /> 39 <!-- U+25CC: "" DOTTED CIRCLE 40 U+0948: "" DEVANAGARI VOWEL SIGN AI 41 U+0948/U+0902: "" DEVANAGARI VOWEL SIGN AI/DEVANAGARI SIGN ANUSVARA 42 U+0968: "" DEVANAGARI DIGIT TWO --> 43 <Key 44 latin:keyLabel="◌ै" 45 latin:code="0x0948" 46 latin:moreKeys="◌ैं|ैं,%" 47 latin:keyHintLabel="2" 48 latin:additionalMoreKeys="२,2" 49 latin:keyLabelFlags="fontNormal|followKeyLetterRatio" /> 50 <!-- U+25CC: "" DOTTED CIRCLE 51 U+093E: "" DEVANAGARI VOWEL SIGN AA 52 U+093E/U+0902: "" DEVANAGARI VOWEL SIGN AA/DEVANAGARI SIGN ANUSVARA 53 U+093E/U+0901: "" DEVANAGARI VOWEL SIGN AA/DEVANAGARI SIGN CANDRABINDU 54 U+0969: "" DEVANAGARI DIGIT THREE --> 55 <Key 56 latin:keyLabel="◌ा" 57 latin:code="0x093E" 58 latin:moreKeys="◌ां|ां,◌ाँ|ाँ,%" 59 latin:keyHintLabel="3" 60 latin:additionalMoreKeys="३,3" 61 latin:keyLabelFlags="fontNormal|followKeyLetterRatio" /> 62 <!-- U+25CC: "" DOTTED CIRCLE 63 U+0940: "" DEVANAGARI VOWEL SIGN II 64 U+0940/U+0902: "" DEVANAGARI VOWEL SIGN II/DEVANAGARI SIGN ANUSVARA 65 U+096A: "" DEVANAGARI DIGIT FOUR --> 66 <Key 67 latin:keyLabel="◌ी" 68 latin:code="0x0940" 69 latin:moreKeys="◌ीं|ीं,%" 70 latin:keyHintLabel="4" 71 latin:additionalMoreKeys="४,4" 72 latin:keyLabelFlags="fontNormal|followKeyLetterRatio" /> 73 <!-- U+25CC: "" DOTTED CIRCLE 74 U+0942: "" DEVANAGARI VOWEL SIGN UU 75 U+0942/U+0902: "" DEVANAGARI VOWEL SIGN UU/DEVANAGARI SIGN ANUSVARA 76 U+0942/U+0901: "" DEVANAGARI VOWEL SIGN UU/DEVANAGARI SIGN CANDRABINDU 77 U+096B: "" DEVANAGARI DIGIT FIVE --> 78 <Key 79 latin:keyLabel="◌ू" 80 latin:code="0x0942" 81 latin:moreKeys="◌ूं|ूं,◌ूँ|ूँ,%" 82 latin:keyHintLabel="5" 83 latin:additionalMoreKeys="५,5" 84 latin:keyLabelFlags="fontNormal|followKeyLetterRatio" /> 85 </merge> 86