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="15%p" 24 android:horizontalGap="0px" 25 android:verticalGap="0px" 26 android:keyHeight="@dimen/popup_key_height" 27 > 28 <Row 29 android:rowEdgeFlags="top" 30 > 31 <Key 32 android:keyLabel=":-)" 33 android:keyOutputText=":-) " 34 android:keyEdgeFlags="left" /> 35 <Key 36 android:keyLabel=":-(" 37 android:keyOutputText=":-( " /> 38 <Key 39 android:keyLabel=";-)" 40 android:keyOutputText=";-) " /> 41 <Key 42 android:keyLabel=":-P" 43 android:keyOutputText=":-P " /> 44 <Key 45 android:keyLabel="=-O" 46 android:keyOutputText="=-O " 47 android:keyEdgeFlags="right" /> 48 </Row> 49 <Row> 50 <Key 51 android:keyLabel=":-*" 52 android:keyOutputText=":-* " 53 android:keyEdgeFlags="left" /> 54 <Key 55 android:keyLabel=":O" 56 android:keyOutputText=":O " /> 57 <Key 58 android:keyLabel="B-)" 59 android:keyOutputText="B-) " /> 60 <Key 61 android:keyLabel=":-$" 62 android:keyOutputText=":-$ " /> 63 <Key 64 android:keyLabel=":-!" 65 android:keyOutputText=":-! " 66 android:keyEdgeFlags="right" /> 67 </Row> 68 <Row 69 android:rowEdgeFlags="bottom" 70 > 71 <Key 72 android:keyLabel=":-[" 73 android:keyOutputText=":-[ " 74 android:keyEdgeFlags="left" /> 75 <Key 76 android:keyLabel="O:-)" 77 android:keyOutputText="O:-) " /> 78 <Key 79 android:keyLabel=":-\\" 80 android:keyOutputText=":-\\ " /> 81 <Key 82 android:keyLabel=":'(" 83 android:keyOutputText=":'( " /> 84 <Key 85 android:keyLabel=":-D" 86 android:keyOutputText=":-D " 87 android:keyEdgeFlags="right" /> 88 </Row> 89 </Keyboard> 90