From 88dd84254c2508fee387a47ed153840c4f72143f Mon Sep 17 00:00:00 2001 From: Jon Miranda Date: Wed, 5 Jun 2019 11:07:17 -0700 Subject: [PATCH] Reduce alpha delay 25ms to reduce flashy feeling of appearing large. Bug: 123900446 Change-Id: Ia8ff74eb6b65affbf5c6c1599f4d168b459f324e --- .../android/launcher3/QuickstepAppTransitionManagerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstep/src/com/android/launcher3/QuickstepAppTransitionManagerImpl.java b/quickstep/src/com/android/launcher3/QuickstepAppTransitionManagerImpl.java index dcf2e3c155..46161cbc8a 100644 --- a/quickstep/src/com/android/launcher3/QuickstepAppTransitionManagerImpl.java +++ b/quickstep/src/com/android/launcher3/QuickstepAppTransitionManagerImpl.java @@ -108,7 +108,7 @@ public abstract class QuickstepAppTransitionManagerImpl extends LauncherAppTrans // Use a shorter duration for x or y translation to create a curve effect private static final long APP_LAUNCH_CURVED_DURATION = 250; private static final long APP_LAUNCH_ALPHA_DURATION = 50; - private static final long APP_LAUNCH_ALPHA_START_DELAY = 50; + private static final long APP_LAUNCH_ALPHA_START_DELAY = 25; // We scale the durations for the downward app launch animations (minus the scale animation). private static final float APP_LAUNCH_DOWN_DUR_SCALE_FACTOR = 0.8f;