Home
last modified time | relevance | path

Searched refs:boundsAnimator (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
DCollapsedAlarmViewHolder.java199 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView) in createExpandingAnimator() local
201 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN); in createExpandingAnimator()
204 animatorSet.playTogether(alphaAnimatorSet, boundsAnimator); in createExpandingAnimator()
222 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView) in createCollapsingAnimator() local
224 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN); in createCollapsingAnimator()
242 animatorSet.playTogether(alphaAnimatorSet, boundsAnimator, arrowAnimation); in createCollapsingAnimator()
DExpandedAlarmViewHolder.java357 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView); in createCollapsingAnimator() local
358 boundsAnimator.setDuration(duration); in createCollapsingAnimator()
359 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN); in createCollapsingAnimator()
404 animatorSet.playTogether(backgroundAnimator, boundsAnimator, repeatAnimation, in createCollapsingAnimator()
413 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView); in createExpandingAnimator() local
414 boundsAnimator.setDuration(duration); in createExpandingAnimator()
415 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN); in createExpandingAnimator()
480 animatorSet.playTogether(backgroundAnimator, repeatAnimation, boundsAnimator, in createExpandingAnimator()