2018-01-22 14:37:09 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2007 The Android Open Source Project
|
2009-03-03 19:32:27 -08:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
2011-07-19 15:47:55 -07:00
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-07-19 15:47:55 -07:00
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
-->
|
2014-10-23 17:28:30 -07:00
|
|
|
<com.android.launcher3.LauncherRootView
|
2009-03-03 19:32:27 -08:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-03 11:39:27 -08:00
|
|
|
xmlns:launcher="http://schemas.android.com/apk/res-auto"
|
2012-10-26 15:13:08 -07:00
|
|
|
android:id="@+id/launcher"
|
2010-01-08 15:07:00 -08:00
|
|
|
android:layout_width="match_parent"
|
2012-10-26 15:13:08 -07:00
|
|
|
android:layout_height="match_parent"
|
2014-10-23 17:28:30 -07:00
|
|
|
android:fitsSystemWindows="true">
|
2009-07-31 16:21:40 -07:00
|
|
|
|
2015-08-19 17:55:02 -07:00
|
|
|
<com.android.launcher3.dragndrop.DragLayer
|
2012-10-26 15:13:08 -07:00
|
|
|
android:id="@+id/drag_layer"
|
2018-01-22 14:37:09 -08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2016-01-29 13:14:14 -08:00
|
|
|
android:clipChildren="false"
|
|
|
|
|
android:clipToPadding="false"
|
2018-01-22 14:37:09 -08:00
|
|
|
android:importantForAccessibility="no">
|
2011-09-16 20:14:36 -07:00
|
|
|
|
2020-07-20 12:38:01 -07:00
|
|
|
<com.android.launcher3.views.AccessibilityActionsView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:contentDescription="@string/home_screen"
|
|
|
|
|
/>
|
|
|
|
|
|
2012-10-26 15:13:08 -07:00
|
|
|
<!-- The workspace contains 5 screens of cells -->
|
2015-06-18 15:05:56 -07:00
|
|
|
<!-- DO NOT CHANGE THE ID -->
|
2013-06-05 22:57:57 -04:00
|
|
|
<com.android.launcher3.Workspace
|
2012-10-26 15:13:08 -07:00
|
|
|
android:id="@+id/workspace"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2016-07-11 17:30:03 -07:00
|
|
|
android:layout_gravity="center"
|
2018-01-22 14:37:09 -08:00
|
|
|
android:theme="@style/HomeScreenElementTheme"
|
|
|
|
|
launcher:pageIndicator="@+id/page_indicator" />
|
2012-10-26 15:13:08 -07:00
|
|
|
|
2019-03-03 15:32:12 -08:00
|
|
|
<!-- DO NOT CHANGE THE ID -->
|
2019-05-02 16:30:25 -07:00
|
|
|
<include
|
2019-03-03 15:32:12 -08:00
|
|
|
android:id="@+id/hotseat"
|
2019-05-02 16:30:25 -07:00
|
|
|
layout="@layout/hotseat" />
|
2019-03-03 15:32:12 -08:00
|
|
|
|
2013-07-23 16:47:31 -07:00
|
|
|
<!-- Keep these behind the workspace so that they are not visible when
|
2018-01-22 14:37:09 -08:00
|
|
|
we go into AllApps -->
|
|
|
|
|
<com.android.launcher3.pageindicators.WorkspacePageIndicator
|
|
|
|
|
android:id="@+id/page_indicator"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-03-27 20:06:52 -07:00
|
|
|
android:layout_height="@dimen/workspace_page_indicator_height"
|
2018-03-26 12:10:31 -07:00
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
2018-01-22 14:37:09 -08:00
|
|
|
android:theme="@style/HomeScreenElementTheme" />
|
2013-07-23 16:47:31 -07:00
|
|
|
|
2015-09-11 09:27:58 -07:00
|
|
|
<include
|
2016-05-25 18:56:41 -07:00
|
|
|
android:id="@+id/drop_target_bar"
|
2018-01-18 17:14:05 -08:00
|
|
|
layout="@layout/drop_target_bar" />
|
2012-10-26 15:13:08 -07:00
|
|
|
|
2021-04-06 13:03:54 -07:00
|
|
|
<com.android.launcher3.views.ScrimView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2018-11-02 13:50:40 -07:00
|
|
|
android:id="@+id/scrim_view"
|
2021-04-23 16:28:12 -07:00
|
|
|
android:background="@android:color/transparent" />
|
2018-05-04 13:19:29 -07:00
|
|
|
|
2018-01-22 14:37:09 -08:00
|
|
|
<include
|
2015-03-02 11:51:23 -08:00
|
|
|
android:id="@+id/apps_view"
|
2018-01-22 14:37:09 -08:00
|
|
|
layout="@layout/all_apps"
|
2015-03-02 11:51:23 -08:00
|
|
|
android:layout_width="match_parent"
|
2018-11-02 13:50:40 -07:00
|
|
|
android:layout_height="match_parent" />
|
2018-03-14 17:51:49 -07:00
|
|
|
|
2020-12-09 16:23:24 -08:00
|
|
|
<include
|
|
|
|
|
android:id="@+id/overview_panel"
|
|
|
|
|
layout="@layout/overview_panel" />
|
|
|
|
|
|
2015-08-19 17:55:02 -07:00
|
|
|
</com.android.launcher3.dragndrop.DragLayer>
|
2014-10-16 09:49:24 -07:00
|
|
|
|
2014-10-23 17:28:30 -07:00
|
|
|
</com.android.launcher3.LauncherRootView>
|