From 898bd99116e9e51a9d7e4515c48137ba9cfaf9e3 Mon Sep 17 00:00:00 2001 From: Hyunyoung Song Date: Mon, 27 Apr 2020 21:57:02 -0700 Subject: [PATCH] Force all apps content to be alpha 0 when plugin is in place Bug: 155114822 Change-Id: I9b2d10d5c009c3bb4fb2cf4cb4d9ff50153eba39 --- .../android/launcher3/allapps/AllAppsTransitionController.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/android/launcher3/allapps/AllAppsTransitionController.java b/src/com/android/launcher3/allapps/AllAppsTransitionController.java index 071c03d23a..ab556f297c 100644 --- a/src/com/android/launcher3/allapps/AllAppsTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsTransitionController.java @@ -230,6 +230,8 @@ public class AllAppsTransitionController implements StateHandler, OnDeviceProfil hasAllAppsContent, setter, headerFade, allAppsFade); } else { setter.setViewAlpha(mPluginContent, hasAllAppsContent ? 1 : 0, allAppsFade); + setter.setViewAlpha(mAppsView.getContentView(), 0, allAppsFade); + setter.setViewAlpha(mAppsView.getScrollBar(), 0, allAppsFade); } mAppsView.getSearchUiManager().setContentVisibility(visibleElements, setter, allAppsFade);