1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2010 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <resources> 18 <!-- Set of tips to show the user. 19 20 First line is the tip title, which is shown in bold on its own line. 21 22 All subsequent text is placed into the tip body. 23 24 The occurrence of @drawable/foo causes the bitmap drawable named "foo" 25 to be displayed to the right of the tip text. 26 27 Example for tip #1: 28 _____________________________________________ \_/ 29 | | /._.\ 30 | See all your apps. [all_apps.png] > U| |U 31 | Touch the Launcher icon. | |___| 32 |_____________________________________________| U U 33 --> 34 <string-array name="tips"> 35 <!-- Tip: Where the launcher icon is and what it does. With icon. --> 36 <item>See all your apps.\n 37 Touch the Launcher icon. @drawable/all_apps</item> 38 39 <!-- Tip: Longpress in Launcher (all apps) to drag apps to the home screen. --> 40 <item>Drag apps to your Home screen.\n 41 Touch & hold an app in the Launcher until it vibrates.</item> 42 43 <!-- Tip: Longpress to move icons/widgets around. --> 44 <item>Rearrange your Home screen.\n 45 Touch & hold an item and when it vibrates, drag it where you want.</item> 46 47 <!-- Tip: Longpress icons/widgets and drag to trash to remove them. --> 48 <item>Remove items.\n 49 Touch & hold an item and when it vibrates, drag it to the Trash icon. @drawable/trash</item> 50 51 <!-- Tip: Swipe to switch workspaces; drag items to move them to other 52 workspaces. --> 53 <item>Multiple Home screens.\n 54 Swipe left or right to switch. Drag items to other screens.</item> 55 56 <!-- Tip: Reminder about how to delete widgets, reinforcing that this 57 technique can be used to remove the tips widget iteself. --> 58 <item>Done with this widget?\n 59 Touch & hold it and when it vibrates, drag it to the Trash icon.</item> 60 </string-array> 61 62 <!-- dial *#*#TIPS#*#* --> 63 <!-- do not translate --> 64 <string-array name="tips2"> 65 <item>Home is a garden 66 \nTouch & hold an empty spot 67 \nTo grow new icons</item> 68 <item>Phone isnt waterproof 69 \nDo not immerse in water 70 \nor other fluids</item> 71 <item>Want some more home screens? 72 \nSwipe left and right to find them 73 \n(No theft required)</item> 74 <item>Little Home screen dots 75 \nWhat could they possibly do? 76 \nTouch & hold to learn.</item> 77 <item>Status bar icons 78 \nTo discover their secrets 79 \nPull the windowshade</item> 80 <item>There is a trick to 81 \nDragging items twixt Home screens 82 \nPause at the edges</item> 83 <item>Touch Market for apps 84 \nLike a box of chocolates 85 \nEach one a surprise</item> 86 <item>Oh, and by the way: 87 \nCeci nest pas une trombone 88 \nI am an Android</item> 89 </string-array> 90 </resources> 91