1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 * Copyright (C) 2008 Esmertec AG. 4 * Copyright (C) 2008 The Android Open Source Project 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 --> 18 <resources> 19 <!-- NOTE: if you change anything about this array, you must make the corresponding change 20 to the array DEFAULT_SMILEY_RES_IDS in MessageListItem.java and to default_smiley_names 21 below. --> 22 <string-array name="default_smiley_texts"> 23 <item>:-)</item> <!-- 0: Happy --> 24 <item>:-(</item> <!-- 1: Sad --> 25 <item>;-)</item> <!-- 2: Winking --> 26 <item>:-P</item> <!-- 3: Tongue sticking out --> 27 <item>=-O</item> <!-- 4: Surprised --> 28 <item>:-*</item> <!-- 5: Kissing --> 29 <item>:O</item> <!-- 6: Yelling --> 30 <item>B-)</item> <!-- 7: Cool --> 31 <item>:-$</item> <!-- 8: Money mouth --> 32 <item>:-!</item> <!-- 9: Foot in mouth --> 33 <item>:-[</item> <!-- 10: Embarrassed --> 34 <item>O:-)</item> <!-- 11: Angel --> 35 <item>:-\\</item> <!-- 12: Undecided --> 36 <item>:\'(</item> <!-- 13: Crying --> 37 <item>:-X</item> <!-- 14: Lips are sealed --> 38 <item>:-D</item> <!-- 15: Laughing --> 39 <item>o_O</item> <!-- 16: Confused --> 40 </string-array> 41 42 <!-- NOTE: if you change anything about this array, you must make the corresponding change 43 to the array DEFAULT_SMILEY_RES_IDS in MessageListItem.java and to default_smiley_texts 44 above. --> 45 <string-array name="default_smiley_names"> 46 <item>Happy</item> <!-- 0: :-) --> 47 <item>Sad</item> <!-- 1: :-( --> 48 <item>Winking</item> <!-- 2: ;-) --> 49 <item>Tongue sticking out</item> <!-- 3: :-P --> 50 <item>Surprised</item> <!-- 4: =-O --> 51 <item>Kissing</item> <!-- 5: :-* --> 52 <item>Yelling</item> <!-- 6: :O --> 53 <item>Cool</item> <!-- 7: B-) --> 54 <item>Money mouth</item> <!-- 8: :-$ --> 55 <item>Foot in mouth</item> <!-- 9: :-! --> 56 <item>Embarrassed</item> <!-- 10: :-[ --> 57 <item>Angel</item> <!-- 11: O:-) --> 58 <item>Undecided</item> <!-- 12: :-\\ --> 59 <item>Crying</item> <!-- 13: :\'( --> 60 <item>Lips are sealed</item> <!-- 14: :-X --> 61 <item>Laughing</item> <!-- 15: :-D --> 62 <item>Confused</item> <!-- 16: o_O --> 63 </string-array> 64 </resources> 65