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

  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetEventsTest.java 33 ObjectAnimator yAnim = ObjectAnimator.ofFloat(this, "translationY", 0, 100);
39 ((AnimatorSet)mAnimator).playSequentially(xAnim, yAnim);
55 yAnim.setStartDelay(500);
57 animSet.playSequentially(xAnim, yAnim);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java 120 ObjectAnimator yAnim = ObjectAnimator.ofFloat(ball, "y",
122 yAnim.setRepeatCount(0);
123 yAnim.setRepeatMode(ValueAnimator.REVERSE);
124 yAnim.setInterpolator(new AccelerateInterpolator(2f));
125 yAnim.addUpdateListener(this);
126 yAnim.addListener(this);
141 ((AnimatorSet) animation).playTogether(yAnim, xAnim);
  /frameworks/base/graphics/java/android/graphics/drawable/
Ripple.java 393 final RenderNodeAnimator yAnim = new RenderNodeAnimator(mPropY, mOuterY);
394 yAnim.setDuration(radiusDuration);
395 yAnim.setInterpolator(DECEL_INTERPOLATOR);
406 mPendingAnimations.add(yAnim);
470 final ObjectAnimator yAnim = ObjectAnimator.ofFloat(this, "yGravity", 1);
471 yAnim.setAutoCancel(true);
472 yAnim.setDuration(radiusDuration);
473 yAnim.setInterpolator(DECEL_INTERPOLATOR);
484 mAnimY = yAnim;
489 yAnim.start()
    [all...]

Completed in 149 milliseconds