From d68872426c43b36051652ece6a194c7e53d2180a Mon Sep 17 00:00:00 2001 From: Hyunyoung Song Date: Wed, 23 Feb 2022 23:00:49 -0800 Subject: [PATCH] Change the all apps atomic transition duration to 150 ms Test: manual TL;DR;; this value is used for tap on qsb all apps container atomic transition. 320 is value that used to be used in R when all apps travel distance used to be entire window height. In S, we reduced the travel distance to 1/3 of the height. Change-Id: Ib66f8a4408fd77350c31c5b894d9f8b2c889159f --- .../com/android/launcher3/uioverrides/states/AllAppsState.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstep/src/com/android/launcher3/uioverrides/states/AllAppsState.java b/quickstep/src/com/android/launcher3/uioverrides/states/AllAppsState.java index 4583fc3f5e..cd14b3f75c 100644 --- a/quickstep/src/com/android/launcher3/uioverrides/states/AllAppsState.java +++ b/quickstep/src/com/android/launcher3/uioverrides/states/AllAppsState.java @@ -38,7 +38,7 @@ public class AllAppsState extends LauncherState { @Override public int getTransitionDuration(Context context) { - return 320; + return 150; } @Override