Searched refs:toView (Results 1 – 2 of 2) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerFragment.kt | 476 toView: View?, in animateToView() 480 if (mCurrentView === toView) { in animateToView() 484 val toTimers = toView === mTimersView in animateToView() 495 val viewTreeObserver = toView!!.viewTreeObserver in animateToView() 506 toView.translationY = -translationDistance in animateToView() 508 toView.alpha = 0f in animateToView() 513 val translateNew: Animator = ObjectAnimator.ofFloat(toView, View.TRANSLATION_Y, 0f) in animateToView() 550 val fadeInAnimator: Animator = ObjectAnimator.ofFloat(toView, View.ALPHA, 1f) in animateToView()
|
D | TimerFragment.java | 578 private void animateToView(final View toView, final Timer timerToRemove, in animateToView() argument 580 if (mCurrentView == toView) { in animateToView() 584 final boolean toTimers = toView == mTimersView; in animateToView() 595 final ViewTreeObserver viewTreeObserver = toView.getViewTreeObserver(); in animateToView() 607 toView.setTranslationY(-translationDistance); in animateToView() 609 toView.setAlpha(0f); in animateToView() 614 final Animator translateNew = ObjectAnimator.ofFloat(toView, TRANSLATION_Y, 0f); in animateToView() 654 final Animator fadeInAnimator = ObjectAnimator.ofFloat(toView, ALPHA, 1f); in animateToView()
|