From a8352d22afd3b78ab01ded90ad1674599100fda5 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Thu, 23 Feb 2012 16:28:37 -0800 Subject: [PATCH] Cancel scroll indicator fade during allapps/workspace transition Change-Id: I8661c17adbf0a129730b44641930fb68ba9afed6 --- src/com/android/launcher2/AppsCustomizeTabHost.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/com/android/launcher2/AppsCustomizeTabHost.java b/src/com/android/launcher2/AppsCustomizeTabHost.java index 4639c57ccf..152b215882 100644 --- a/src/com/android/launcher2/AppsCustomizeTabHost.java +++ b/src/com/android/launcher2/AppsCustomizeTabHost.java @@ -370,6 +370,9 @@ public class AppsCustomizeTabHost extends TabHost implements LauncherTransitiona if (toWorkspace) { // Going from All Apps -> Workspace setVisibilityOfSiblingsWithLowerZOrder(VISIBLE); + // Stop the scrolling indicator - we don't want All Apps to be invalidating itself + // during the transition, especially since it has a hardware layer set on it + mAppsCustomizePane.cancelScrollingIndicatorAnimations(); } else { // Going from Workspace -> All Apps mContent.setVisibility(VISIBLE);