D | AnimationActivity.java | 93 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, repeatMode, in createAnimatorWithRepeatMode() 98 return createAnimator(view.newBall, "y", 1000, repeatCount, ValueAnimator.REVERSE, in createAnimatorWithRepeatCount() 103 return createAnimator(view.newBall, "y", duration ,ValueAnimator.INFINITE, in createAnimatorWithDuration() 108 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, in createAnimatorWithInterpolator() 125 ObjectAnimator objAnimator = ObjectAnimator.ofInt(view.newBall, "y", (int)mStartY, in createObjectAnimatorForInt() 136 ValueAnimator bounceAnimator = ObjectAnimator.ofFloat(view.newBall, "y", mStartY, in startAnimation() 148 animator.setTarget(view.newBall); in startSingleAnimation() 188 public ShapeHolder newBall = null; field in AnimationActivity.AnimationView 197 newBall = addBall(mBallHeight, mBallWidth); in AnimationView() 223 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f); in animateBall()
|