/ime/latinime/res/xml/kbd_phone_symbols_black.xml
XML | 98 lines | 76 code | 1 blank | 21 comment | 0 complexity | 9858559cfcbb58939c79a5bff00223ce MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** 5** Copyright 2010, 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:keyEdgeFlags="right" /> 42 </Row> 43 <Row> 44 <Key 45 android:keyLabel="N" 46 android:keyEdgeFlags="left" /> 47 <!-- Pause is a comma. Check PhoneNumberUtils.java to see if this 48 has changed. --> 49 <Key 50 android:codes="44" 51 android:keyLabel="Pause" /> 52 <Key 53 android:keyLabel="," /> 54 <Key 55 android:keyLabel="." 56 android:keyWidth="20%p" 57 android:keyEdgeFlags="right" /> 58 </Row> 59 <Row> 60 <Key 61 android:codes="42" 62 android:keyIcon="@drawable/sym_bkeyboard_numstar" 63 android:keyEdgeFlags="left" /> 64 <!-- Wait is a semicolon. --> 65 <Key 66 android:codes="59" 67 android:keyLabel="Wait" /> 68 <Key 69 android:codes="35" 70 android:keyIcon="@drawable/sym_bkeyboard_numpound" /> 71 <Key 72 android:codes="@integer/key_delete" 73 android:keyIcon="@drawable/sym_bkeyboard_delete" 74 android:iconPreview="@drawable/sym_keyboard_feedback_delete" 75 android:keyWidth="20%p" 76 android:isRepeatable="true" 77 android:keyEdgeFlags="right" /> 78 </Row> 79 <Row 80 android:rowEdgeFlags="bottom" 81 > 82 <Key 83 android:codes="@integer/key_symbol" 84 android:keyLabel="@string/label_phone_key" 85 android:keyEdgeFlags="left" /> 86 <Key 87 android:keyLabel="+" /> 88 <Key 89 android:codes="@integer/key_space" 90 android:keyIcon="@drawable/sym_bkeyboard_space" 91 android:iconPreview="@drawable/sym_keyboard_feedback_space" /> 92 <Key 93 android:codes="@integer/key_return" 94 android:keyIcon="@drawable/sym_bkeyboard_return" 95 android:keyWidth="20%p" 96 android:keyEdgeFlags="right" /> 97 </Row> 98</Keyboard>