diff options
| author | 2016-07-19 01:08:30 +0000 | |
|---|---|---|
| committer | 2016-07-19 01:08:30 +0000 | |
| commit | 9d7d33a4076493be7de573a59536389a53efc3e4 (patch) | |
| tree | cdeb20b70775639b39c7dcb939d3da4a83925e46 | |
| parent | 091cdab02d2f76fb257619eca60d29936f02535f (diff) | |
| parent | 35d61e41170716d37a81c4f2654a4f9eceb49a0c (diff) | |
Merge \"docs: fix typo error in class name\" into nyc-dev
am: 35d61e4117
Change-Id: I88bd65d22260d6f47905bed60ce7c0c58ed2bc0e
| -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) { |