Lines Matching defs:animated

757             // The animated view may be null in the case of a rotation during widget configuration
2387 * is animated relative to the specified View. If the View is null, no animation
2523 * @param view The view being animated
2556 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2558 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2562 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2564 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2577 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2579 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2631 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
2651 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
2653 if (animated) {
2700 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2701 dispatchOnLauncherTransitionEnd(toView, animated, false);
2730 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2731 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2733 // If any of the objects being animated haven't been measured/laid out
2749 dispatchOnLauncherTransitionStart(fromView, animated, false);
2750 dispatchOnLauncherTransitionStart(toView, animated, false);
2783 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2784 dispatchOnLauncherTransitionStart(fromView, animated, false);
2785 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2786 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2787 dispatchOnLauncherTransitionStart(toView, animated, false);
2788 dispatchOnLauncherTransitionEnd(toView, animated, false);
2796 * @param animated If true, the transition will be animated.
2798 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2820 Workspace.State.NORMAL, animated, stagger);
2823 Workspace.State.SPRING_LOADED, animated);
2828 showHotseat(animated);
2829 if (animated) {
2852 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2853 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2861 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2862 dispatchOnLauncherTransitionEnd(toView, animated, true);
2878 dispatchOnLauncherTransitionStart(fromView, animated, true);
2879 dispatchOnLauncherTransitionStart(toView, animated, true);
2883 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2884 dispatchOnLauncherTransitionStart(fromView, animated, true);
2885 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2886 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2887 dispatchOnLauncherTransitionStart(toView, animated, true);
2888 dispatchOnLauncherTransitionEnd(toView, animated, true);
2918 void showWorkspace(boolean animated) {
2919 showWorkspace(animated, null);
2922 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
2926 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
2935 showDockDivider(animated && wasInSpringLoadedMode);
2943 mWorkspace.flashScrollingIndicator(animated);
2957 void showAllApps(boolean animated) {
2960 showAppsCustomizeHelper(animated, false);
3008 final boolean animated = true;
3010 showAppsCustomizeHelper(animated, springLoaded);
3023 void showDockDivider(boolean animated) {
3033 if (animated) {
3058 void showHotseat(boolean animated) {
3060 if (animated) {
3077 void hideHotseat(boolean animated) {
3079 if (animated) {
3520 // Prepare the view to be animated up
4154 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
4155 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
4157 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);