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

  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetEventsTest.java 32 ObjectAnimator xAnim = ObjectAnimator.ofFloat(this, "translationX", 0, 100);
39 ((AnimatorSet)mAnimator).playSequentially(xAnim, yAnim);
57 animSet.playSequentially(xAnim, yAnim);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java 128 ObjectAnimator xAnim = ObjectAnimator.ofFloat(ball, "x",
130 xAnim.setStartDelay(0);
131 xAnim.setRepeatCount(0);
132 xAnim.setRepeatMode(ValueAnimator.REVERSE);
133 xAnim.setInterpolator(new AccelerateInterpolator(2f));
141 ((AnimatorSet) animation).playTogether(yAnim, xAnim);

Completed in 129 milliseconds