Home
last modified time | relevance | path

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

/development/samples/ApiDemos/src/com/example/android/apis/animation/
DAnimatorEvents.java128 ObjectAnimator xAnim = ObjectAnimator.ofFloat(ball, "x", in createAnimation() local
130 xAnim.setStartDelay(0); in createAnimation()
131 xAnim.setRepeatCount(0); in createAnimation()
132 xAnim.setRepeatMode(ValueAnimator.REVERSE); in createAnimation()
133 xAnim.setInterpolator(new AccelerateInterpolator(2f)); in createAnimation()
141 ((AnimatorSet) animation).playTogether(yAnim, xAnim); in createAnimation()