summaryrefslogtreecommitdiff
path: root/core/java/android/widget/TextView.java
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2018-05-08 17:11:33 -0700
committerYohei Yukawa <yukawa@google.com>2018-05-08 17:11:33 -0700
commit3128ebd880b2284ee6459e8b0e137d44807a3346 (patch)
tree3f8caab9060a220af82054a7effad4cb5eaf53b3 /core/java/android/widget/TextView.java
parent10fc71709b55a49452127f82174709fb3e2dcdab (diff)
Fix a typo in the API doc of TextView#setKeyListener()
Fix: 79436805 Test: make -j docs Then check out/target/common/docs/offline-sdk/reference/android/widget/TextView.html#setKeyListener(android.text.method.KeyListener) Change-Id: I6c0d2a3af9434240c4e6e931185bc4f21b2e2b52
Diffstat (limited to 'core/java/android/widget/TextView.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 7b9ecca075ff..48775adc83cf 100644
--- a/core/java/android/widget/TextView.java
+++ b/core/java/android/widget/TextView.java
@@ -2284,7 +2284,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
* Sets the key listener to be used with this TextView. This can be null
* to disallow user input. Note that this method has significant and
* subtle interactions with soft keyboards and other input method:
- * see {@link KeyListener#getInputType() KeyListener.getContentType()}
+ * see {@link KeyListener#getInputType() KeyListener.getInputType()}
* for important details. Calling this method will replace the current
* content type of the text view with the content type returned by the
* key listener.