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/com.android.launcher"> 18 <!-- Far-left screen [0] --> 19 20 <!-- Left screen [1] --> 21 <appwidget 22 launcher:packageName="com.android.settings" 23 launcher:className="com.android.settings.widget.SettingsAppWidgetProvider" 24 launcher:screen="1" 25 launcher:x="0" 26 launcher:y="3" 27 launcher:spanX="4" 28 launcher:spanY="1" /> 29 30 <!-- Middle screen [2] --> 31 <appwidget 32 launcher:packageName="com.android.deskclock" 33 launcher:className="com.android.alarmclock.AnalogAppWidgetProvider" 34 launcher:screen="2" 35 launcher:x="1" 36 launcher:y="0" 37 launcher:spanX="2" 38 launcher:spanY="2" /> 39 <favorite 40 launcher:packageName="com.android.camera" 41 launcher:className="com.android.camera.Camera" 42 launcher:screen="2" 43 launcher:x="0" 44 launcher:y="3" /> 45 46 <!-- Right screen [3] --> 47 <favorite 48 launcher:packageName="com.android.gallery3d" 49 launcher:className="com.android.gallery3d.app.Gallery" 50 launcher:screen="3" 51 launcher:x="1" 52 launcher:y="3" /> 53 <favorite 54 launcher:packageName="com.android.settings" 55 launcher:className="com.android.settings.Settings" 56 launcher:screen="3" 57 launcher:x="2" 58 launcher:y="3" /> 59 60 <!-- Far-right screen [4] --> 61</favorites> 62