Home | History | Annotate | Download | only in launcher2

Lines Matching refs:toView

2551      * Zoom the camera out from the workspace to reveal 'toView'.
2567 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
2571 setPivotsForZoom(toView, scale);
2578 toView.setScaleX(scale);
2579 toView.setScaleY(scale);
2580 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2586 toView.setVisibility(View.VISIBLE);
2587 toView.setAlpha(0f);
2589 .ofFloat(toView, "alpha", 0f, 1f)
2600 dispatchOnLauncherTransitionStep(toView, t);
2604 // toView should appear right at the end of the workspace shrink
2617 toView.setTranslationX(0.0f);
2618 toView.setTranslationY(0.0f);
2619 toView.setVisibility(View.VISIBLE);
2620 toView.bringToFront();
2625 dispatchOnLauncherTransitionEnd(toView, animated, false);
2655 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2659 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
2661 (toView.getMeasuredWidth() == 0)) {
2672 setPivotsForZoom(toView, scale);
2674 dispatchOnLauncherTransitionStart(toView, animated, false);
2675 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
2679 final ViewTreeObserver observer = toView.getViewTreeObserver();
2683 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
2690 toView.setTranslationX(0.0f);
2691 toView.setTranslationY(0.0f);
2692 toView.setScaleX(1.0f);
2693 toView.setScaleY(1.0f);
2694 toView.setVisibility(View.VISIBLE);
2695 toView.bringToFront();
2710 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2711 dispatchOnLauncherTransitionStart(toView, animated, false);
2712 dispatchOnLauncherTransitionEnd(toView, animated, false);
2738 final View toView = mWorkspace;
2770 dispatchOnLauncherTransitionStep(toView, t);
2777 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2786 dispatchOnLauncherTransitionEnd(toView, animated, true);
2803 dispatchOnLauncherTransitionStart(toView, animated, true);
2804 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
2810 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2811 dispatchOnLauncherTransitionStart(toView, animated, true);
2812 dispatchOnLauncherTransitionEnd(toView, animated, true);