2018-03-13 09:57:05 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
|
Copyright (C) 2018 The Android Open Source Project
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
-->
|
2020-06-19 11:09:24 -07:00
|
|
|
<com.android.launcher3.LauncherRootView
|
2018-03-13 09:57:05 -07:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-07-25 18:47:14 +00:00
|
|
|
android:id="@+id/launcher"
|
2018-03-13 09:57:05 -07:00
|
|
|
android:layout_width="match_parent"
|
2018-03-27 17:35:54 -07:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:fitsSystemWindows="true">
|
2018-03-13 09:57:05 -07:00
|
|
|
|
2021-02-22 14:49:27 -08:00
|
|
|
<com.android.quickstep.views.SplitPlaceholderView
|
|
|
|
|
android:id="@+id/split_placeholder"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/split_placeholder_size"
|
|
|
|
|
android:background="@android:color/white"
|
|
|
|
|
android:alpha=".8"
|
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
2020-06-19 11:09:24 -07:00
|
|
|
<com.android.quickstep.fallback.RecentsDragLayer
|
|
|
|
|
android:id="@+id/drag_layer"
|
2018-03-13 09:57:05 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-06-19 11:09:24 -07:00
|
|
|
android:clipChildren="false">
|
2020-02-21 17:53:02 -08:00
|
|
|
|
2021-04-23 14:26:45 -07:00
|
|
|
<com.android.launcher3.views.ScrimView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:id="@+id/scrim_view"
|
|
|
|
|
android:background="@android:color/transparent" />
|
|
|
|
|
|
2020-06-19 11:09:24 -07:00
|
|
|
<com.android.quickstep.fallback.FallbackRecentsView
|
|
|
|
|
android:id="@id/overview_panel"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:clipChildren="false"
|
|
|
|
|
android:clipToPadding="false"
|
2021-10-25 15:06:49 -07:00
|
|
|
android:outlineProvider="none" />
|
2020-02-21 17:53:02 -08:00
|
|
|
|
2020-06-19 11:09:24 -07:00
|
|
|
<include
|
|
|
|
|
android:id="@+id/overview_actions_view"
|
|
|
|
|
layout="@layout/overview_actions_container" />
|
|
|
|
|
|
|
|
|
|
</com.android.quickstep.fallback.RecentsDragLayer>
|
|
|
|
|
</com.android.launcher3.LauncherRootView>
|