summaryrefslogtreecommitdiffstats
path: root/quickstep/res
diff options
context:
space:
mode:
authorKevin <kevhan@google.com>2019-01-30 17:05:20 -0800
committerKevin <kevhan@google.com>2019-02-19 14:12:42 -0800
commit750bbe08dab194be9c82cd3b8cb5dafaef961fff (patch)
tree064a8b9104b31df863915afb6a2d02f1398e6afd /quickstep/res
parent8d7778fa37cf18a115ae1698ad1f820f3010e204 (diff)
downloadandroid_packages_apps_Trebuchet-750bbe08dab194be9c82cd3b8cb5dafaef961fff.tar.gz
android_packages_apps_Trebuchet-750bbe08dab194be9c82cd3b8cb5dafaef961fff.tar.bz2
android_packages_apps_Trebuchet-750bbe08dab194be9c82cd3b8cb5dafaef961fff.zip
Implement fallback recents activity for Go
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
Diffstat (limited to 'quickstep/res')
-rw-r--r--quickstep/res/layout/fallback_recents_activity.xml31
1 files changed, 0 insertions, 31 deletions
diff --git a/quickstep/res/layout/fallback_recents_activity.xml b/quickstep/res/layout/fallback_recents_activity.xml
deleted file mode 100644
index ef272ed80..000000000
--- a/quickstep/res/layout/fallback_recents_activity.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?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.
--->
-<com.android.quickstep.fallback.RecentsRootView
- 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">
-
- <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"
- android:outlineProvider="none"
- android:theme="@style/HomeScreenElementTheme" />
-</com.android.quickstep.fallback.RecentsRootView>