Home
last modified time | relevance | path

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

/development/samples/ApiDemos/src/com/example/android/apis/animation/
DAnimatorEvents.java120 ObjectAnimator yAnim = ObjectAnimator.ofFloat(ball, "y", in createAnimation() local
122 yAnim.setRepeatCount(0); in createAnimation()
123 yAnim.setRepeatMode(ValueAnimator.REVERSE); in createAnimation()
124 yAnim.setInterpolator(new AccelerateInterpolator(2f)); in createAnimation()
125 yAnim.addUpdateListener(this); in createAnimation()
126 yAnim.addListener(this); in createAnimation()
141 ((AnimatorSet) animation).playTogether(yAnim, xAnim); in createAnimation()