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

  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 84 ShapeHolder newBall = addBall(event.getX(), event.getY());
87 float startY = newBall.getY();
92 ValueAnimator bounceAnim = ObjectAnimator.ofFloat(newBall, "y", startY, endY);
95 ValueAnimator squashAnim1 = ObjectAnimator.ofFloat(newBall, "x", newBall.getX(),
96 newBall.getX() - 25f);
101 ValueAnimator squashAnim2 = ObjectAnimator.ofFloat(newBall, "width", newBall.getWidth(),
102 newBall.getWidth() + 50);
107 ValueAnimator stretchAnim1 = ObjectAnimator.ofFloat(newBall, "y", endY
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 94 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, repeatMode,
99 return createAnimator(view.newBall, "y", 1000, repeatCount, ValueAnimator.REVERSE,
104 return createAnimator(view.newBall, "y", duration ,ValueAnimator.INFINITE,
109 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE,
126 ObjectAnimator objAnimator = ObjectAnimator.ofInt(view.newBall, "y", (int)mStartY,
137 ValueAnimator bounceAnimator = ObjectAnimator.ofFloat(view.newBall, "y", mStartY,
184 public ShapeHolder newBall = null;
193 newBall = addBall(mBallHeight, mBallWidth);
219 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);

Completed in 2223 milliseconds