Home | History | Annotate | Download | only in launcher2

Lines Matching refs:toView

2569      * Zoom the camera out from the workspace to reveal 'toView'.
2585 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
2589 setPivotsForZoom(toView, scale);
2596 toView.setScaleX(scale);
2597 toView.setScaleY(scale);
2598 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2604 toView.setVisibility(View.VISIBLE);
2605 toView.setAlpha(0f);
2607 .ofFloat(toView, "alpha", 0f, 1f)
2618 dispatchOnLauncherTransitionStep(toView, t);
2622 // toView should appear right at the end of the workspace shrink
2635 toView.setTranslationX(0.0f);
2636 toView.setTranslationY(0.0f);
2637 toView.setVisibility(View.VISIBLE);
2638 toView.bringToFront();
2643 dispatchOnLauncherTransitionEnd(toView, animated, false);
2673 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2677 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
2679 (toView.getMeasuredWidth() == 0)) {
2690 setPivotsForZoom(toView, scale);
2692 dispatchOnLauncherTransitionStart(toView, animated, false);
2693 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
2697 final ViewTreeObserver observer = toView.getViewTreeObserver();
2701 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
2708 toView.setTranslationX(0.0f);
2709 toView.setTranslationY(0.0f);
2710 toView.setScaleX(1.0f);
2711 toView.setScaleY(1.0f);
2712 toView.setVisibility(View.VISIBLE);
2713 toView.bringToFront();
2728 dispatchOnLauncherTransitionPrepare(toView, animated, false);
2729 dispatchOnLauncherTransitionStart(toView, animated, false);
2730 dispatchOnLauncherTransitionEnd(toView, animated, false);
2756 final View toView = mWorkspace;
2788 dispatchOnLauncherTransitionStep(toView, t);
2795 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2804 dispatchOnLauncherTransitionEnd(toView, animated, true);
2821 dispatchOnLauncherTransitionStart(toView, animated, true);
2822 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
2828 dispatchOnLauncherTransitionPrepare(toView, animated, true);
2829 dispatchOnLauncherTransitionStart(toView, animated, true);
2830 dispatchOnLauncherTransitionEnd(toView, animated, true);