summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/View.java
diff options
context:
space:
mode:
authorNewton Allen <newt@google.com>2013-08-13 11:22:32 -0700
committerNewton Allen <newt@google.com>2013-10-30 16:18:21 -0700
commitc502744f2ddcc80a34f5197b5d2c0d701c7d6e71 (patch)
tree1baf46988c1e72aeafeb8166a0e7988d7584d183 /core/java/android/view/View.java
parent19a2ee5d70362182200a2a25e8f86bae2045885b (diff)
downloadframeworks_base-c502744f2ddcc80a34f5197b5d2c0d701c7d6e71.zip
frameworks_base-c502744f2ddcc80a34f5197b5d2c0d701c7d6e71.tar.gz
frameworks_base-c502744f2ddcc80a34f5197b5d2c0d701c7d6e71.tar.bz2
Fix some documentation typos.
Change-Id: I0360d468d54d970c87f313e24e50965245206f28
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 75dfdaf..1c3688d 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -9184,9 +9184,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.
@@ -10427,7 +10427,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.
*