HomeSort by relevance Sort by last modified time
    Searched refs:boundsAnimator (Results 1 - 2 of 2) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
CollapsedAlarmViewHolder.java 199 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView)
201 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN);
204 animatorSet.playTogether(alphaAnimatorSet, boundsAnimator);
222 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView)
224 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN);
242 animatorSet.playTogether(alphaAnimatorSet, boundsAnimator, arrowAnimation);
ExpandedAlarmViewHolder.java 357 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView);
358 boundsAnimator.setDuration(duration);
359 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN);
404 animatorSet.playTogether(backgroundAnimator, boundsAnimator, repeatAnimation,
413 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView);
414 boundsAnimator.setDuration(duration);
415 boundsAnimator.setInterpolator(AnimatorUtils.INTERPOLATOR_FAST_OUT_SLOW_IN);
480 animatorSet.playTogether(backgroundAnimator, repeatAnimation, boundsAnimator,

Completed in 137 milliseconds