diff options
| author | 2016-07-19 00:56:28 +0000 | |
|---|---|---|
| committer | 2016-07-19 00:56:29 +0000 | |
| commit | 35d61e41170716d37a81c4f2654a4f9eceb49a0c (patch) | |
| tree | e1c25ac0229b73a7066b6fd100589819d6aa6fb4 | |
| parent | 19d013d4e38ab6d63c514c3fd371e06929ddf651 (diff) | |
| parent | 5ffdda018e56fbc2d4083ef9365548e6605e544a (diff) | |
Merge "docs: fix typo error in class name" into nyc-dev
| -rwxr-xr-x | docs/html/guide/topics/graphics/prop-animation.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/graphics/prop-animation.jd b/docs/html/guide/topics/graphics/prop-animation.jd index 693799c5ba1e..2be2b09ffea3 100755 --- a/docs/html/guide/topics/graphics/prop-animation.jd +++ b/docs/html/guide/topics/graphics/prop-animation.jd @@ -594,7 +594,7 @@ implementations of the methods that you can choose to override.</p> for just the {@link android.animation.Animator.AnimatorListener#onAnimationEnd onAnimationEnd()} callback:</p> <pre> -ValueAnimatorAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f); +ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f); fadeAnim.setDuration(250); fadeAnim.addListener(new AnimatorListenerAdapter() { public void onAnimationEnd(Animator animation) { |