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:keyLabel="(" 31 latin:keyStyle="numKeyStyle" /> 32 <Key 33 latin:keyLabel="/" 34 latin:keyStyle="numKeyStyle" /> 35 <Key 36 latin:keyLabel=")" 37 latin:keyStyle="numKeyStyle" /> 38 <Key 39 latin:keyLabel="-" 40 latin:moreKeys="+" 41 latin:keyLabelFlags="hasPopupHint" 42 latin:keyStyle="numFunctionalKeyStyle" 43 latin:keyWidth="fillRight" /> 44 </Row> 45 <Row> 46 <Key 47 latin:keyLabel="N" 48 latin:keyStyle="numKeyBaseStyle" /> 49 <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 50 has changed. --> 51 <Key 52 latin:keyStyle="numPauseKeyStyle" /> 53 <Key 54 latin:keyLabel="," 55 latin:keyStyle="numKeyStyle" /> 56 <Key 57 latin:keyLabel="." 58 latin:keyStyle="numFunctionalKeyStyle" 59 latin:keyWidth="fillRight" /> 60 </Row> 61 <Row> 62 <Key 63 latin:keyStyle="numStarKeyStyle" /> 64 <!-- Wait is a semicolon. --> 65 <Key 66 latin:keyStyle="numWaitKeyStyle" /> 67 <Key 68 latin:keyLabel="\#" 69 latin:keyStyle="numKeyStyle" /> 70 <Key 71 latin:keyStyle="deleteKeyStyle" 72 latin:keyWidth="fillRight" /> 73 </Row> 74 <Row> 75 <Key 76 latin:keyStyle="numPhoneToNumericKeyStyle" /> 77 <Key 78 latin:keyLabel="+" 79 latin:keyStyle="numKeyStyle" /> 80 <Key 81 latin:keyStyle="numSpaceKeyStyle" /> 82 <Key 83 latin:keyStyle="enterKeyStyle" 84 latin:keyWidth="fillRight" /> 85 </Row> 86 </merge> 87