Home | History | Annotate | Download | only in quickstep

Lines Matching defs:valueAnimator

34 import android.animation.ValueAnimator;
280 ValueAnimator anim = controller.getAnimationPlayer()
321 anim.play(ValueAnimator.ofInt(0, 1).setDuration(100));
332 anim.play(ValueAnimator.ofInt(0, 1).setDuration(100));
353 ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, 1);
354 valueAnimator.setDuration(RECENTS_LAUNCH_DURATION);
355 valueAnimator.setInterpolator(TOUCH_RESPONSE_INTERPOLATOR);
356 valueAnimator.addUpdateListener((v) ->
365 valueAnimator.addUpdateListener((v) -> {
372 anim.play(valueAnimator);