summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mark Lu <marklu@google.com> 2016-07-19 01:08:30 +0000
committer android-build-merger <android-build-merger@google.com> 2016-07-19 01:08:30 +0000
commit9d7d33a4076493be7de573a59536389a53efc3e4 (patch)
treecdeb20b70775639b39c7dcb939d3da4a83925e46
parent091cdab02d2f76fb257619eca60d29936f02535f (diff)
parent35d61e41170716d37a81c4f2654a4f9eceb49a0c (diff)
Merge \"docs: fix typo error in class name\" into nyc-dev
am: 35d61e4117 Change-Id: I88bd65d22260d6f47905bed60ce7c0c58ed2bc0e
-rwxr-xr-xdocs/html/guide/topics/graphics/prop-animation.jd2
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) {