From 8ee2a70f08f54314d3ff0cd571a7ea9337065389 Mon Sep 17 00:00:00 2001 From: Robert Ly Date: Mon, 17 Dec 2012 15:00:08 -0800 Subject: [PATCH] change onEnd() to withEndAction() in javadocs Change-Id: Ic9a04bf86d62249b47dc654052d58797dfc3990c --- core/java/android/view/ViewPropertyAnimator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/view/ViewPropertyAnimator.java b/core/java/android/view/ViewPropertyAnimator.java index d8db14ca28867..22f98b7fa301f 100644 --- a/core/java/android/view/ViewPropertyAnimator.java +++ b/core/java/android/view/ViewPropertyAnimator.java @@ -701,7 +701,7 @@ public class ViewPropertyAnimator { * view.animate().x(0); * } * }; - * view.animate().x(200).onEnd(endAction); + * view.animate().x(200).withEndAction(endAction); * * * @param runnable The action to run when the next animation ends.