2018-01-23 06:37:09 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2007 The Android Open Source Project
|
2009-03-04 11: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-20 06:47:55 +08:00
|
|
|
|
2009-03-04 11:32:27 +08:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-07-20 06:47:55 +08:00
|
|
|
|
2009-03-04 11: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-24 08:28:30 +08:00
|
|
|
<com.android.launcher3.LauncherRootView
|
2009-03-04 11:32:27 +08:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-04 03:39:27 +08:00
|
|
|
xmlns:launcher="http://schemas.android.com/apk/res-auto"
|
2012-10-27 06:13:08 +08:00
|
|
|
android:id="@+id/launcher"
|
2010-01-09 07:07:00 +08:00
|
|
|
android:layout_width="match_parent"
|
2012-10-27 06:13:08 +08:00
|
|
|
android:layout_height="match_parent"
|
2014-10-24 08:28:30 +08:00
|
|
|
android:fitsSystemWindows="true">
|
2009-08-01 07:21:40 +08:00
|
|
|
|
2015-08-20 08:55:02 +08:00
|
|
|
<com.android.launcher3.dragndrop.DragLayer
|
2012-10-27 06:13:08 +08:00
|
|
|
android:id="@+id/drag_layer"
|
2018-01-23 06:37:09 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-01-30 05:14:14 +08:00
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
2018-01-23 06:37:09 +08:00
|
|
|
android:importantForAccessibility="no">
|
2011-09-17 11:14:36 +08:00
|
|
|
|
2012-10-27 06:13:08 +08:00
|
|
|
<!-- The workspace contains 5 screens of cells -->
|
2015-06-19 06:05:56 +08:00
|
|
|
<!-- DO NOT CHANGE THE ID -->
|
2013-06-06 10:57:57 +08:00
|
|
|
<com.android.launcher3.Workspace
|
2012-10-27 06:13:08 +08:00
|
|
|
android:id="@+id/workspace"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-07-12 08:30:03 +08:00
|
|
|
android:layout_gravity="center"
|
2018-01-23 06:37:09 +08:00
|
|
|
android:theme="@style/HomeScreenElementTheme"
|
|
|
|
launcher:pageIndicator="@+id/page_indicator" />
|
2012-10-27 06:13:08 +08:00
|
|
|
|
2018-01-23 06:37:09 +08:00
|
|
|
<include
|
2018-06-07 06:39:13 +08:00
|
|
|
android:id="@+id/overview_panel"
|
2018-01-23 06:37:09 +08:00
|
|
|
layout="@layout/overview_panel"
|
2017-12-16 05:05:42 +08:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
2013-07-24 07:47:31 +08:00
|
|
|
<!-- Keep these behind the workspace so that they are not visible when
|
2018-01-23 06:37:09 +08:00
|
|
|
we go into AllApps -->
|
|
|
|
<com.android.launcher3.pageindicators.WorkspacePageIndicator
|
|
|
|
android:id="@+id/page_indicator"
|
|
|
|
android:layout_width="match_parent"
|
2018-03-27 03:10:31 +08:00
|
|
|
android:layout_height="4dp"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
2018-01-23 06:37:09 +08:00
|
|
|
android:theme="@style/HomeScreenElementTheme" />
|
2013-07-24 07:47:31 +08:00
|
|
|
|
2015-09-12 00:27:58 +08:00
|
|
|
<include
|
2016-05-26 09:56:41 +08:00
|
|
|
android:id="@+id/drop_target_bar"
|
2018-01-19 09:14:05 +08:00
|
|
|
layout="@layout/drop_target_bar" />
|
2012-10-27 06:13:08 +08:00
|
|
|
|
2018-05-05 04:19:29 +08:00
|
|
|
<include android:id="@+id/scrim_view"
|
|
|
|
layout="@layout/scrim_view" />
|
|
|
|
|
2018-01-23 06:37:09 +08:00
|
|
|
<include
|
2015-03-03 03:51:23 +08:00
|
|
|
android:id="@+id/apps_view"
|
2018-01-23 06:37:09 +08:00
|
|
|
layout="@layout/all_apps"
|
2015-03-03 03:51:23 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-09-27 05:01:56 +08:00
|
|
|
android:visibility="invisible" />
|
2018-03-15 08:51:49 +08:00
|
|
|
|
|
|
|
<!-- DO NOT CHANGE THE ID -->
|
|
|
|
<include
|
|
|
|
android:id="@+id/hotseat"
|
|
|
|
layout="@layout/hotseat"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2015-08-20 08:55:02 +08:00
|
|
|
</com.android.launcher3.dragndrop.DragLayer>
|
2014-10-17 00:49:24 +08:00
|
|
|
|
2014-10-24 08:28:30 +08:00
|
|
|
</com.android.launcher3.LauncherRootView>
|