Home | History | Annotate | Download | only in launcher2

Lines Matching refs:animated

731             // The animated view may be null in the case of a rotation during widget configuration
2361 * is animated relative to the specified View. If the View is null, no animation
2497 * @param view The view being animated
2530 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2532 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2536 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2538 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2551 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2553 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2605 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
2625 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
2627 if (animated) {
2674 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2675 dispatchOnLauncherTransitionEnd(toView, animated, false);
2704 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2705 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2707 // If any of the objects being animated haven't been measured/laid out
2723 dispatchOnLauncherTransitionStart(fromView, animated, false);
2724 dispatchOnLauncherTransitionStart(toView, animated, false);
2757 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2758 dispatchOnLauncherTransitionStart(fromView, animated, false);
2759 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2760 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2761 dispatchOnLauncherTransitionStart(toView, animated, false);
2762 dispatchOnLauncherTransitionEnd(toView, animated, false);
2770 * @param animated If true, the transition will be animated.
2772 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2794 Workspace.State.NORMAL, animated, stagger);
2797 Workspace.State.SPRING_LOADED, animated);
2802 showHotseat(animated);
2803 if (animated) {
2826 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2827 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2835 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2836 dispatchOnLauncherTransitionEnd(toView, animated, true);
2852 dispatchOnLauncherTransitionStart(fromView, animated, true);
2853 dispatchOnLauncherTransitionStart(toView, animated, true);
2857 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2858 dispatchOnLauncherTransitionStart(fromView, animated, true);
2859 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2860 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2861 dispatchOnLauncherTransitionStart(toView, animated, true);
2862 dispatchOnLauncherTransitionEnd(toView, animated, true);
2892 void showWorkspace(boolean animated) {
2893 showWorkspace(animated, null);
2896 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
2900 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
2909 showDockDivider(animated && wasInSpringLoadedMode);
2917 mWorkspace.flashScrollingIndicator(animated);
2931 void showAllApps(boolean animated) {
2934 showAppsCustomizeHelper(animated, false);
2982 final boolean animated = true;
2984 showAppsCustomizeHelper(animated, springLoaded);
2997 void showDockDivider(boolean animated) {
3007 if (animated) {
3032 void showHotseat(boolean animated) {
3034 if (animated) {
3051 void hideHotseat(boolean animated) {
3053 if (animated) {
3494 // Prepare the view to be animated up
4121 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
4122 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
4124 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);