blob: d382c6a9fd303671d8078c935ecc79c36f8b78da [file] [log] [blame]
Michael Jurkaaf442092010-06-10 17:01:57 -07001<?xml version="1.0" encoding="utf-8"?>
Winson Chung0e721a42012-08-02 17:40:30 -07002<!-- Copyright (C) 2007 The Android Open Source Project
Michael Jurkaaf442092010-06-10 17:01:57 -07003
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
Craig Mautner360310b2012-10-26 15:13:08 -070017<!-- Full screen view projects under the status bar and contains the background -->
Adam Cohena6d04922014-10-23 17:28:30 -070018<com.android.launcher3.LauncherRootView
Winson Chung6fa610d2012-02-24 15:53:17 -080019 xmlns:android="http://schemas.android.com/apk/res/android"
Sunny Goyalb9f261f2014-11-03 11:39:27 -080020 xmlns:launcher="http://schemas.android.com/apk/res-auto"
Michael Jurkaaf442092010-06-10 17:01:57 -070021
Craig Mautner360310b2012-10-26 15:13:08 -070022 android:id="@+id/launcher"
Michael Jurkaaf442092010-06-10 17:01:57 -070023 android:layout_width="match_parent"
Craig Mautner360310b2012-10-26 15:13:08 -070024 android:layout_height="match_parent"
Adam Cohena6d04922014-10-23 17:28:30 -070025 android:fitsSystemWindows="true">
Michael Jurkaaf442092010-06-10 17:01:57 -070026
Daniel Sandler325dc232013-06-05 22:57:57 -040027 <com.android.launcher3.DragLayer
Craig Mautner360310b2012-10-26 15:13:08 -070028 android:id="@+id/drag_layer"
Michael Jurkaaf442092010-06-10 17:01:57 -070029 android:layout_width="match_parent"
Adam Cohena6d04922014-10-23 17:28:30 -070030 android:layout_height="match_parent">
Michael Jurkaaf442092010-06-10 17:01:57 -070031
Sunny Goyaldcbcc862014-08-12 15:58:36 -070032 <com.android.launcher3.FocusIndicatorView
33 android:id="@+id/focus_indicator"
34 android:layout_width="52dp"
35 android:layout_height="52dp" />
36
Craig Mautner360310b2012-10-26 15:13:08 -070037 <!-- The workspace contains 5 screens of cells -->
Hyunyoung Song60331a92015-06-18 15:05:56 -070038 <!-- DO NOT CHANGE THE ID -->
Daniel Sandler325dc232013-06-05 22:57:57 -040039 <com.android.launcher3.Workspace
Craig Mautner360310b2012-10-26 15:13:08 -070040 android:id="@+id/workspace"
41 android:layout_width="match_parent"
42 android:layout_height="match_parent"
Adam Cohen9efb4122013-06-06 21:35:12 -070043 launcher:defaultScreen="@integer/config_workspaceDefaultScreen"
Winson Chung5f8afe62013-08-12 16:19:28 -070044 launcher:pageIndicator="@id/page_indicator">
Daniel Sandler325dc232013-06-05 22:57:57 -040045 </com.android.launcher3.Workspace>
Winson Chung97d85d22011-04-13 11:27:36 -070046
Hyunyoung Song60331a92015-06-18 15:05:56 -070047 <!-- DO NOT CHANGE THE ID -->
Craig Mautner360310b2012-10-26 15:13:08 -070048 <include layout="@layout/hotseat"
49 android:id="@+id/hotseat"
50 android:layout_width="match_parent"
Winson Chung5f8afe62013-08-12 16:19:28 -070051 android:layout_height="match_parent" />
Winson Chung82f55532011-08-09 14:14:23 -070052
Craig Mautner360310b2012-10-26 15:13:08 -070053 <include
Adam Cohen24ce0b32014-01-14 16:18:14 -080054 android:id="@+id/search_drop_target_bar"
55 layout="@layout/search_drop_target_bar" />
Winson Chungd0160152011-11-15 15:04:42 -080056
Adam Cohenf358a4b2013-07-23 16:47:31 -070057 <include layout="@layout/overview_panel"
58 android:id="@+id/overview_panel"
59 android:visibility="gone" />
60
61 <!-- Keep these behind the workspace so that they are not visible when
62 we go into AllApps -->
Hyunyoung Song60331a92015-06-18 15:05:56 -070063 <include android:id="@+id/page_indicator"
Adam Cohenf358a4b2013-07-23 16:47:31 -070064 layout="@layout/page_indicator"
65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content"
Winson Chung5f8afe62013-08-12 16:19:28 -070067 android:layout_gravity="center_horizontal" />
Adam Cohenf358a4b2013-07-23 16:47:31 -070068
Hyunyoung Song3f471442015-04-08 19:01:34 -070069 <include layout="@layout/widgets_view"
Winson Chung0f785722015-04-08 10:27:49 -070070 android:id="@+id/widgets_view"
Craig Mautner360310b2012-10-26 15:13:08 -070071 android:layout_width="match_parent"
72 android:layout_height="match_parent"
73 android:visibility="invisible" />
Winson Chungb745afb2015-03-02 11:51:23 -080074
Winson Chung5f4e0fd2015-05-22 11:12:27 -070075 <include layout="@layout/all_apps"
Winson Chungb745afb2015-03-02 11:51:23 -080076 android:id="@+id/apps_view"
77 android:layout_width="match_parent"
78 android:layout_height="match_parent"
79 android:visibility="invisible" />
Daniel Sandler325dc232013-06-05 22:57:57 -040080 </com.android.launcher3.DragLayer>
Adam Cohenc2d6e892014-10-16 09:49:24 -070081
82 <ViewStub
83 android:id="@+id/launcher_overlay_stub"
84 android:layout_width="match_parent"
85 android:layout_height="match_parent"
86 android:inflatedId="@+id/launcher_overlay"
87 android:layout="@layout/launcher_overlay" />
88
Adam Cohena6d04922014-10-23 17:28:30 -070089</com.android.launcher3.LauncherRootView>