1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2015 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 <!-- Hotseat (We use the screen as the position of the item in the hotseat) --> 19 <!-- Dialer, Messaging, [All Apps], Browser, Camera --> 20 <resolve 21 launcher:container="-101" 22 launcher:screen="0" 23 launcher:x="0" 24 launcher:y="0" > 25 <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" /> 26 <favorite launcher:uri="tel:123" /> 27 <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" /> 28 </resolve> 29 30 <resolve 31 launcher:container="-101" 32 launcher:screen="1" 33 launcher:x="1" 34 launcher:y="0" > 35 <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" /> 36 <favorite launcher:uri="sms:" /> 37 <favorite launcher:uri="smsto:" /> 38 <favorite launcher:uri="mms:" /> 39 <favorite launcher:uri="mmsto:" /> 40 </resolve> 41 42 <!-- All Apps --> 43 44 <resolve 45 launcher:container="-101" 46 launcher:screen="3" 47 launcher:x="3" 48 launcher:y="0" > 49 <favorite 50 launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" /> 51 <favorite launcher:uri="http://www.example.com/" /> 52 </resolve> 53 54 <resolve 55 launcher:container="-101" 56 launcher:screen="4" 57 launcher:x="4" 58 launcher:y="0" > 59 <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" /> 60 <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" /> 61 </resolve> 62 63</favorites> 64