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

  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 132 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
133 fadeAnim.setDuration(250);
134 fadeAnim.addListener(new AnimatorListenerAdapter() {
144 animatorSet.play(bouncer).before(fadeAnim);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 224 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
225 fadeAnim.setDuration(250);
226 fadeAnim.addListener(new AnimatorListenerAdapter() {
235 animatorSet.play(bouncer).before(fadeAnim);

Completed in 38 milliseconds