Searched defs:toView (Results 1 - 1 of 1) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerFragment.java573 * @param toView one of {@link #mTimersView} or {@link #mCreateTimerView}
578 private void animateToView(final View toView, final Timer timerToRemove, argument
580 if (mCurrentView == toView) {
584 final boolean toTimers = toView == mTimersView;
595 final ViewTreeObserver viewTreeObserver = toView.getViewTreeObserver();
607 toView.setTranslationY(-translationDistance);
609 toView.setAlpha(0f);
614 final Animator translateNew = ObjectAnimator.ofFloat(toView, TRANSLATION_Y, 0f);
654 final Animator fadeInAnimator = ObjectAnimator.ofFloat(toView, ALPHA, 1f);

Completed in 78 milliseconds