diff options
author | Adam Cohen <adamcohen@google.com> | 2011-10-17 21:48:02 -0700 |
---|---|---|
committer | Adam Cohen <adamcohen@google.com> | 2011-10-17 21:53:41 -0700 |
commit | b64d36e6f8006b3ea5a6c2951af4cf8dea72d08e (patch) | |
tree | e0b15cc1f0d2ccbd85faed3764f9da869c45bed1 /src/com | |
parent | 7fe4f8ba0a3c065773f3166940f6b34e42194389 (diff) | |
download | packages_apps_trebuchet-b64d36e6f8006b3ea5a6c2951af4cf8dea72d08e.zip packages_apps_trebuchet-b64d36e6f8006b3ea5a6c2951af4cf8dea72d08e.tar.gz packages_apps_trebuchet-b64d36e6f8006b3ea5a6c2951af4cf8dea72d08e.tar.bz2 |
Fixing stutter in AllApps transition
-> Tightened up the interpolator and decreased the duration of the
AllApps-in animation. This removes many excess frames at the end
of the transition, and frees up perf for swiping AllApps:
(issue 5359751)
-> Changed when AllApps state gets reset -- now only after
leaving home, and then pressing home, or when the screen
turns off.
Change-Id: I76e988102da91c12cb52af01468cf9a81fe45545
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/android/launcher2/AppsCustomizePagedView.java | 10 | ||||
-rw-r--r-- | src/com/android/launcher2/Launcher.java | 3 | ||||
-rw-r--r-- | src/com/android/launcher2/Workspace.java | 4 |
3 files changed, 11 insertions, 6 deletions
diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java index 4f5d835..7bc4b51 100644 --- a/src/com/android/launcher2/AppsCustomizePagedView.java +++ b/src/com/android/launcher2/AppsCustomizePagedView.java @@ -1360,8 +1360,14 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen @Override public void reset() { - updateCurrentTab(0); - invalidatePageData(0); + AppsCustomizeTabHost tabHost = getTabHost(); + String tag = tabHost.getCurrentTabTag(); + if (!tag.equals(tabHost.getTabTagForContentType(ContentType.Applications))) { + tabHost.setCurrentTabFromContent(ContentType.Applications); + } + if (mCurrentPage != 0) { + invalidatePageData(0); + } } private AppsCustomizeTabHost getTabHost() { diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java index dc7b77e..02f19ac 100644 --- a/src/com/android/launcher2/Launcher.java +++ b/src/com/android/launcher2/Launcher.java @@ -1209,7 +1209,7 @@ public final class Launcher extends Activity } // Reset AllApps to its initial state - if (mAppsCustomizeTabHost != null) { + if (!alreadyOnHome && mAppsCustomizeTabHost != null) { mAppsCustomizeTabHost.reset(); } } @@ -2187,7 +2187,6 @@ public final class Launcher extends Activity // Shrink workspaces away if going to AppsCustomize from workspace mWorkspace.changeState(Workspace.State.SMALL, animated); - //hideHotseat(animated); if (animated) { final ValueAnimator scaleAnim = ValueAnimator.ofFloat(0f, 1f).setDuration(duration); diff --git a/src/com/android/launcher2/Workspace.java b/src/com/android/launcher2/Workspace.java index 8a492a2..d1f9617 100644 --- a/src/com/android/launcher2/Workspace.java +++ b/src/com/android/launcher2/Workspace.java @@ -1421,8 +1421,8 @@ public class Workspace extends SmoothPagedView * ZInterpolator compounded with an ease-out. */ static class ZoomOutInterpolator implements TimeInterpolator { - private final ZInterpolator zInterpolator = new ZInterpolator(0.2f); - private final DecelerateInterpolator decelerate = new DecelerateInterpolator(1.8f); + private final DecelerateInterpolator decelerate = new DecelerateInterpolator(0.75f); + private final ZInterpolator zInterpolator = new ZInterpolator(0.13f); public float getInterpolation(float input) { return decelerate.getInterpolation(zInterpolator.getInterpolation(input)); |