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-11-01 02:38:01 +0000
commitff236f5fc1a088b1210d37a67b0e88b06c0fbdb2 (patch)
tree4092fe0319950266e4fd5742dd62e5d32927760e /core/java/android/view/View.java
parent6934add2692ffbad8f299aaef80ee8d3f1f991d6 (diff)
downloadframeworks_base-ff236f5fc1a088b1210d37a67b0e88b06c0fbdb2.zip
frameworks_base-ff236f5fc1a088b1210d37a67b0e88b06c0fbdb2.tar.gz
frameworks_base-ff236f5fc1a088b1210d37a67b0e88b06c0fbdb2.tar.bz2
Fix some documentation typos.
Change-Id: I0360d468d54d970c87f313e24e50965245206f28 (cherry picked from commit c502744f2ddcc80a34f5197b5d2c0d701c7d6e71)
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 e2d98ed..6c04c0b 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -9044,9 +9044,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.
@@ -10287,7 +10287,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.
*