mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 18:06:48 +00:00
Implement recents activity for Go for when the default launcher does not have recents implemented. To do this, we factor out some common recents activity functionality from RecentsActivity and extend it to make a Go specific activity that pops in the icon recents fragment. Bug: 114136250 Test: Manual test NexusLauncher and Launcher3QuickstepGo by installing a quickstep-less launcher and setting it to default Change-Id: I936568489e8966da4a62e4b779ae660a220f2aeb
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
Copyright (C) 2019 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.
|
|
-->
|
|
<com.android.quickstep.fallback.GoRecentsActivityRootView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/drag_layer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<include
|
|
android:id="@+id/overview_panel"
|
|
layout="@layout/overview_panel"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:outlineProvider="none"
|
|
android:theme="@style/HomeScreenElementTheme" />
|
|
</com.android.quickstep.fallback.GoRecentsActivityRootView>
|