summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/View.java
diff options
context:
space:
mode:
authorNewton Allen <newt@google.com>2013-11-07 05:19:12 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2013-11-07 05:19:12 +0000
commitbadb59cd5d2a2905494964889f002a277211000a (patch)
treea05d5d3810c71a7ce4f5a631057eef39665e54c8 /core/java/android/view/View.java
parentc565583384952007f37e090fb354d232f407bd31 (diff)
parent47feee535f9e4e77165b93b6b9f10379e7aa4bbd (diff)
downloadframeworks_base-badb59cd5d2a2905494964889f002a277211000a.zip
frameworks_base-badb59cd5d2a2905494964889f002a277211000a.tar.gz
frameworks_base-badb59cd5d2a2905494964889f002a277211000a.tar.bz2
am 47feee53: Merge "Fix some documentation typos." into klp-docs
* commit '47feee535f9e4e77165b93b6b9f10379e7aa4bbd': Fix some documentation typos.
Diffstat (limited to 'core/java/android/view/View.java')
-rw-r--r--core/java/android/view/View.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index aa2b0d4..b74202d 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -9048,9 +9048,9 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
*/
public interface OnLayoutChangeListener {
/**
- * Called when the focus state of a view has changed.
+ * Called when the layout bounds of a view changes due to layout processing.
*
- * @param v The view whose state has changed.
+ * @param v The view whose bounds have changed.
* @param left The new value of the view's left property.
* @param top The new value of the view's top property.
* @param right The new value of the view's right property.
@@ -10291,7 +10291,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
}
/**
- * The horizontal location of this view relative to its {@link #getTop() top} position.
+ * The vertical location of this view relative to its {@link #getTop() top} position.
* This position is post-layout, in addition to wherever the object's
* layout placed it.
*