Home | History | Annotate | Download | only in launcher2

Lines Matching defs:toView

2627      * Zoom the camera out from the workspace to reveal 'toView'.
2643 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
2647 setPivotsForZoom(toView, scale);
2654 toView.setScaleX(scale);
2655 toView.setScaleY(scale);
2656 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2662 toView.setVisibility(View.VISIBLE);
2663 toView.setAlpha(0f);
2665 .ofFloat(toView, "alpha", 0f, 1f)
2676 dispatchOnLauncherTransitionStep(toView, t);
2680 // toView should appear right at the end of the workspace shrink
2693 toView.setTranslationX(0.0f);
2694 toView.setTranslationY(0.0f);
2695 toView.setVisibility(View.VISIBLE);
2696 toView.bringToFront();
2701 dispatchOnLauncherTransitionEnd(toView, animated, false);
2731 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2735 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
2737 (toView.getMeasuredWidth() == 0)) {
2748 setPivotsForZoom(toView, scale);
2750 dispatchOnLauncherTransitionStart(toView, animated, false);
2751 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
2755 final ViewTreeObserver observer = toView.getViewTreeObserver();
2759 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
2766 toView.setTranslationX(0.0f);
2767 toView.setTranslationY(0.0f);
2768 toView.setScaleX(1.0f);
2769 toView.setScaleY(1.0f);
2770 toView.setVisibility(View.VISIBLE);
2771 toView.bringToFront();
2786 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2787 dispatchOnLauncherTransitionStart(toView, animated, false);
2788 dispatchOnLauncherTransitionEnd(toView, animated, false);
2814 final View toView = mWorkspace;
2846 dispatchOnLauncherTransitionStep(toView, t);
2853 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2862 dispatchOnLauncherTransitionEnd(toView, animated, true);
2879 dispatchOnLauncherTransitionStart(toView, animated, true);
2880 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
2886 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2887 dispatchOnLauncherTransitionStart(toView, animated, true);
2888 dispatchOnLauncherTransitionEnd(toView, animated, true);