Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ffdda01 authored by Mark Lu's avatar Mark Lu
Browse files

docs: fix typo error in class name

Fixes the class name in the code sample

Bug: 25072103
Change-Id: I681901502e100b9514f579c46be9ed7a37352426
parent 73b70040
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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) {