summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorGilles Debunne <debunne@google.com>2012-03-15 15:35:26 -0700
committerGilles Debunne <debunne@google.com>2012-03-15 15:35:29 -0700
commit053c439824fcf95d613aaca8d9b60aa77c9e8132 (patch)
tree76529fa89201d375b34e7e873e5848dd9fd5e76c /core/java
parent58984b0738372bcc8b5862276836ab014377ff94 (diff)
downloadframeworks_base-053c439824fcf95d613aaca8d9b60aa77c9e8132.zip
frameworks_base-053c439824fcf95d613aaca8d9b60aa77c9e8132.tar.gz
frameworks_base-053c439824fcf95d613aaca8d9b60aa77c9e8132.tar.bz2
Update to TextView#didTouchFocusSelect documentation
Bug 6171333 Related to https://android-git.corp.google.com/g/#/c/173335/ Change-Id: Ib4a83b6b0a03579b28d7319c9eb92a4bca09d209
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/widget/TextView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java
index e535170..ae06ac7 100644
--- a/core/java/android/widget/TextView.java
+++ b/core/java/android/widget/TextView.java
@@ -7490,7 +7490,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
* Returns true, only while processing a touch gesture, if the initial
* touch down event caused focus to move to the text view and as a result
* its selection changed. Only valid while processing the touch gesture
- * of interest.
+ * of interest, in an editable text view.
*/
public boolean didTouchFocusSelect() {
return mEditor != null && getEditor().mTouchFocusSelected;