commit | bebae01a94d8dbb4da29d1b0f686783140ae1ba1 | [log] [tgz] |
---|---|---|
author | Sunny Goyal <sunnygoyal@google.com> | Thu Apr 02 18:06:03 2020 -0700 |
committer | Sunny Goyal <sunnygoyal@google.com> | Thu Apr 02 18:06:38 2020 -0700 |
tree | 97e9a92cad2144849ca7e9e8389c6fd528ee6a34 | |
parent | 0ea0dab97e3f9b11a716845eb45d433de743f9ea [diff] |
Not controlling actions visibility during alpha Bug: 153102687 Change-Id: Ib8f920d03a1123f08e76b0ca8b39784c073348c1
diff --git a/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsViewStateController.java b/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsViewStateController.java index 131b71f..3d6e519 100644 --- a/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsViewStateController.java +++ b/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsViewStateController.java
@@ -15,6 +15,7 @@ */ package com.android.launcher3.uioverrides; +import static com.android.launcher3.LauncherAnimUtils.VIEW_ALPHA; import static com.android.launcher3.LauncherState.OVERVIEW_BUTTONS; import static com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE_IN_OUT; import static com.android.launcher3.anim.Interpolators.LINEAR; @@ -91,7 +92,7 @@ View actionsView = mLauncher.getActionsView(); if (actionsView != null) { - propertySetter.setViewAlpha(actionsView, buttonAlpha, actionInterpolator); + propertySetter.setFloat(actionsView, VIEW_ALPHA, buttonAlpha, actionInterpolator); } }