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="26.67%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 android:keyWidth="20%p" 41 android:isModifier="true" 42 android:keyEdgeFlags="right" /> 43 </Row> 44 <Row> 45 <Key 46 android:keyLabel="N" 47 android:keyEdgeFlags="left" /> 48 <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 49 has changed. --> 50 <Key 51 android:codes="44" 52 android:keyLabel="Pause" /> 53 <Key 54 android:keyLabel="," /> 55 <Key 56 android:keyLabel="." 57 android:keyWidth="20%p" 58 android:isModifier="true" 59 android:keyEdgeFlags="right" /> 60 </Row> 61 <Row> 62 <Key 63 android:codes="42" 64 android:keyIcon="@drawable/sym_keyboard_numstar" 65 android:keyEdgeFlags="left" /> 66 <!-- Wait is a semicolon. --> 67 <Key 68 android:codes="59" 69 android:keyLabel="Wait" /> 70 <Key 71 android:codes="35" 72 android:keyIcon="@drawable/sym_keyboard_numpound" /> 73 <Key 74 android:codes="@integer/key_delete" 75 android:keyIcon="@drawable/sym_keyboard_delete" 76 android:iconPreview="@drawable/sym_keyboard_feedback_delete" 77 android:keyWidth="20%p" 78 android:isModifier="true" 79 android:isRepeatable="true" 80 android:keyEdgeFlags="right" /> 81 </Row> 82 <Row 83 android:rowEdgeFlags="bottom" 84 > 85 <Key 86 android:codes="@integer/key_symbol" 87 android:keyLabel="@string/label_phone_key" 88 android:keyEdgeFlags="left" /> 89 <Key 90 android:keyLabel="+" /> 91 <Key 92 android:codes="@integer/key_space" 93 android:keyIcon="@drawable/sym_keyboard_space" 94 android:iconPreview="@drawable/sym_keyboard_feedback_space" /> 95 <Key 96 android:codes="@integer/key_return" 97 android:keyIcon="@drawable/sym_keyboard_return" 98 android:keyWidth="20%p" 99 android:isModifier="true" 100 android:keyEdgeFlags="right" /> 101 </Row> 102 </Keyboard> 103