blob: 89b3b4306e545d4f81542f8e71cd6692717bf84c [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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
Joe Onorato7c312c12009-08-13 21:36:53 -070017<com.android.launcher2.DragLayer
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018 xmlns:android="http://schemas.android.com/apk/res/android"
Joe Onoratoa5902522009-07-30 13:37:37 -070019 xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher2"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080020
Joe Onorato00acb122009-08-04 16:04:30 -040021 android:id="@+id/drag_layer"
22 android:layout_width="fill_parent"
23 android:layout_height="fill_parent">
Joe Onorato59791172009-07-31 16:21:40 -070024
Joe Onorato7c312c12009-08-13 21:36:53 -070025 <com.android.launcher2.AllAppsView
26 android:id="@+id/all_apps_view"
27 android:layout_width="fill_parent"
28 android:layout_height="fill_parent"
Joe Onorato7c312c12009-08-13 21:36:53 -070029
30 android:scrollbarStyle="outsideInset"
31 android:drawSelectorOnTop="false"
32 android:listSelector="@drawable/grid_selector"
33
34 android:verticalSpacing="10dip"
Joe Onorato5779e2a2009-10-06 13:19:30 -070035 android:numColumns="4"
36 />
Joe Onorato7c312c12009-08-13 21:36:53 -070037
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038 <!-- The workspace contains 3 screens of cells -->
Joe Onoratoa5902522009-07-30 13:37:37 -070039 <com.android.launcher2.Workspace
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040 android:id="@+id/workspace"
41 android:layout_width="fill_parent"
42 android:layout_height="fill_parent"
43
44 launcher:defaultScreen="1">
45
46 <include android:id="@+id/cell1" layout="@layout/workspace_screen" />
47 <include android:id="@+id/cell2" layout="@layout/workspace_screen" />
48 <include android:id="@+id/cell3" layout="@layout/workspace_screen" />
49
Joe Onoratoa5902522009-07-30 13:37:37 -070050 </com.android.launcher2.Workspace>
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051
Joe Onorato85a02a82009-09-08 12:34:22 -070052 <com.android.launcher2.HandleView
53 android:id="@+id/all_apps_button"
Joe Onorato5779e2a2009-10-06 13:19:30 -070054 android:layout_width="fill_parent"
Joe Onorato85a02a82009-09-08 12:34:22 -070055 android:layout_height="@dimen/button_bar_height"
56 android:layout_gravity="bottom|center_horizontal"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080057
Joe Onorato85a02a82009-09-08 12:34:22 -070058 android:focusable="true"
59 android:clickable="true"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060
Joe Onorato85a02a82009-09-08 12:34:22 -070061 android:scaleType="center"
62 android:src="@drawable/all_apps_button"
Joe Onorato5779e2a2009-10-06 13:19:30 -070063 launcher:direction="horizontal"
64 />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065
Joe Onoratoa5902522009-07-30 13:37:37 -070066 <com.android.launcher2.DeleteZone
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067 android:id="@+id/delete_zone"
Joe Onoratoa9c28f62009-09-14 18:38:49 -040068 android:layout_width="fill_parent"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069 android:layout_height="49dip"
Joe Onorato85a02a82009-09-08 12:34:22 -070070 android:layout_gravity="bottom|center_horizontal"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071
72 android:scaleType="center"
Joe Onoratoa9c28f62009-09-14 18:38:49 -040073 android:src="@drawable/delete_zone_selector"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074 android:visibility="invisible"
Joe Onorato5779e2a2009-10-06 13:19:30 -070075 launcher:direction="horizontal"
76 />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077
Joe Onoratoa5902522009-07-30 13:37:37 -070078</com.android.launcher2.DragLayer>