summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRobert Ly <robertly@google.com>2012-12-17 15:00:08 -0800
committerRobert Ly <robertly@google.com>2012-12-17 15:00:08 -0800
commit8ee2a70f08f54314d3ff0cd571a7ea9337065389 (patch)
treef18b199ab0d36e55cbdab2ff23e2d07d2d34367a /core
parent9b7cb6f03b2b5492b26fdffd0dddcadb74e8e239 (diff)
downloadframeworks_base-8ee2a70f08f54314d3ff0cd571a7ea9337065389.zip
frameworks_base-8ee2a70f08f54314d3ff0cd571a7ea9337065389.tar.gz
frameworks_base-8ee2a70f08f54314d3ff0cd571a7ea9337065389.tar.bz2
change onEnd() to withEndAction() in javadocs
Change-Id: Ic9a04bf86d62249b47dc654052d58797dfc3990c
Diffstat (limited to 'core')
-rw-r--r--core/java/android/view/ViewPropertyAnimator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/ViewPropertyAnimator.java b/core/java/android/view/ViewPropertyAnimator.java
index d8db14c..22f98b7 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);
* </pre>
*
* @param runnable The action to run when the next animation ends.