summaryrefslogtreecommitdiffstats
path: root/core/java/android
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2015-07-06 14:39:39 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-07-06 14:39:41 +0000
commit7fe86c4753e88058a7f1a1bf8d0302df9a64bd2e (patch)
treeb6abe3cf9c6c9385b52e8cc8b6e0e60f4c3a84f7 /core/java/android
parenta559590043e32f670813e062f042f9e642297edf (diff)
parent94882946112e5a5d384fca5f39b2bdf7584cba6f (diff)
downloadframeworks_base-7fe86c4753e88058a7f1a1bf8d0302df9a64bd2e.zip
frameworks_base-7fe86c4753e88058a7f1a1bf8d0302df9a64bd2e.tar.gz
frameworks_base-7fe86c4753e88058a7f1a1bf8d0302df9a64bd2e.tar.bz2
Merge "Fix docs for ViewAnimationUtils.createCircularReveal" into mnc-dev
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/view/ViewAnimationUtils.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/view/ViewAnimationUtils.java b/core/java/android/view/ViewAnimationUtils.java
index d44df31..4c75935 100644
--- a/core/java/android/view/ViewAnimationUtils.java
+++ b/core/java/android/view/ViewAnimationUtils.java
@@ -43,8 +43,10 @@ public final class ViewAnimationUtils {
* on thread responsiveness.
*
* @param view The View will be clipped to the animating circle.
- * @param centerX The x coordinate of the center of the animating circle.
- * @param centerY The y coordinate of the center of the animating circle.
+ * @param centerX The x coordinate of the center of the animating circle, relative to
+ * <code>view</code>.
+ * @param centerY The y coordinate of the center of the animating circle, relative to
+ * <code>view</code>.
* @param startRadius The starting radius of the animating circle.
* @param endRadius The ending radius of the animating circle.
*/