1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2009 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<favorites xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3"> 18 19 <!-- Hotseat (We use the screen as the position of the item in the hotseat) --> 20 <!-- Dialer, Messaging, Browser, Camera --> 21 <resolve 22 launcher:container="-101" 23 launcher:screen="0" 24 launcher:x="0" 25 launcher:y="0" > 26 <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" /> 27 <favorite launcher:uri="tel:123" /> 28 <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" /> 29 </resolve> 30 31 <resolve 32 launcher:container="-101" 33 launcher:screen="1" 34 launcher:x="1" 35 launcher:y="0" > 36 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" /> 37 <favorite launcher:uri="sms:" /> 38 <favorite launcher:uri="smsto:" /> 39 <favorite launcher:uri="mms:" /> 40 <favorite launcher:uri="mmsto:" /> 41 </resolve> 42 43 <resolve 44 launcher:container="-101" 45 launcher:screen="2" 46 launcher:x="2" 47 launcher:y="0" > 48 <favorite 49 launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" /> 50 <favorite launcher:uri="http://www.example.com/" /> 51 </resolve> 52 53 <resolve 54 launcher:container="-101" 55 launcher:screen="3" 56 launcher:x="3" 57 launcher:y="0" > 58 <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" /> 59 <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" /> 60 </resolve> 61 62 <!-- Bottom row --> 63 <resolve 64 launcher:screen="0" 65 launcher:x="0" 66 launcher:y="-1" > 67 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" /> 68 <favorite launcher:uri="mailto:" /> 69 </resolve> 70 71 <resolve 72 launcher:screen="0" 73 launcher:x="1" 74 launcher:y="-1" > 75 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" /> 76 <favorite launcher:uri="#Intent;type=images/*;end" /> 77 </resolve> 78 79 <resolve 80 launcher:screen="0" 81 launcher:x="3" 82 launcher:y="-1" > 83 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" /> 84 <favorite launcher:uri="market://details?id=com.android.launcher" /> 85 </resolve> 86 87</favorites> 88