summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2016-07-19 00:56:28 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2016-07-19 00:56:29 +0000
commit35d61e41170716d37a81c4f2654a4f9eceb49a0c (patch)
treee1c25ac0229b73a7066b6fd100589819d6aa6fb4
parent19d013d4e38ab6d63c514c3fd371e06929ddf651 (diff)
parent5ffdda018e56fbc2d4083ef9365548e6605e544a (diff)
Merge "docs: fix typo error in class name" into nyc-dev
-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) {