1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 ** 5 ** Copyright 2011, 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 <include 25 latin:keyboardLayout="@xml/key_styles_common" /> 26 <include 27 latin:keyboardLayout="@xml/key_styles_number" /> 28 <Row> 29 <Key 30 latin:keySpec="-" 31 latin:keyStyle="numKeyStyle" 32 latin:keyWidth="10%p" 33 latin:backgroundType="functional" /> 34 <Key 35 latin:keySpec="+" 36 latin:keyStyle="numKeyStyle" 37 latin:keyWidth="10%p" 38 latin:backgroundType="functional" /> 39 <Key 40 latin:keyStyle="numPauseKeyStyle" 41 latin:keyWidth="10%p" 42 latin:backgroundType="functional" /> 43 <Key 44 latin:keyStyle="num1KeyStyle" 45 latin:keyXPos="31%p" /> 46 <Key 47 latin:keyStyle="num2KeyStyle" /> 48 <Key 49 latin:keyStyle="num3KeyStyle" /> 50 <Key 51 latin:keyStyle="deleteKeyStyle" 52 latin:keyXPos="-14%p" 53 latin:keyWidth="fillRight" /> 54 </Row> 55 <Row> 56 <Key 57 latin:keySpec="," 58 latin:keyStyle="numKeyStyle" 59 latin:keyWidth="10%p" 60 latin:backgroundType="functional" /> 61 <Key 62 latin:keySpec="." 63 latin:keyStyle="numKeyStyle" 64 latin:keyWidth="10%p" 65 latin:backgroundType="functional" /> 66 <Key 67 latin:keyStyle="numWaitKeyStyle" 68 latin:keyWidth="10%p" 69 latin:backgroundType="functional" /> 70 <Key 71 latin:keyStyle="num4KeyStyle" 72 latin:keyXPos="31%p" /> 73 <Key 74 latin:keyStyle="num5KeyStyle" /> 75 <Key 76 latin:keyStyle="num6KeyStyle" /> 77 <Key 78 latin:keyStyle="enterKeyStyle" 79 latin:keyXPos="-14%p" 80 latin:keyWidth="fillRight" /> 81 </Row> 82 <Row> 83 <Key 84 latin:keySpec="(" 85 latin:keyStyle="numKeyStyle" 86 latin:keyWidth="10%p" 87 latin:backgroundType="functional" /> 88 <Key 89 latin:keySpec=")" 90 latin:keyStyle="numKeyStyle" 91 latin:keyWidth="10%p" 92 latin:backgroundType="functional" /> 93 <Key 94 latin:keySpec="N" 95 latin:keyStyle="numKeyStyle" 96 latin:keyWidth="10%p" 97 latin:backgroundType="functional" /> 98 <Key 99 latin:keyStyle="num7KeyStyle" 100 latin:keyXPos="31%p" /> 101 <Key 102 latin:keyStyle="num8KeyStyle" /> 103 <Key 104 latin:keyStyle="num9KeyStyle" /> 105 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. --> 106 <Spacer /> 107 </Row> 108 <Row> 109 <Key 110 latin:keyStyle="tabletNumSpaceKeyStyle" 111 latin:keyWidth="30%p" /> 112 <Key 113 latin:keyStyle="numStarKeyStyle" 114 latin:keyXPos="31%p" /> 115 <Key 116 latin:keyStyle="num0KeyStyle" /> 117 <Key 118 latin:keySpec="\#" 119 latin:keyStyle="numKeyStyle" /> 120 </Row> 121 </merge> 122