From e62f4540cd6ce6289fb0196c8e30c3a3d6905794 Mon Sep 17 00:00:00 2001 From: David Friedman Date: Wed, 17 Sep 2014 18:04:23 -0700 Subject: Fixes a typo where parens were used instead of curly braces, preventing a link from being created at build time. Change-Id: I4086ce5054cc2d5cacd72314810b626aee50df62 --- docs/html/guide/topics/ui/controls/text.jd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/html/guide/topics/ui/controls/text.jd b/docs/html/guide/topics/ui/controls/text.jd index c0b98737749f..3fe45012eddd 100644 --- a/docs/html/guide/topics/ui/controls/text.jd +++ b/docs/html/guide/topics/ui/controls/text.jd @@ -172,7 +172,7 @@ android:imeOptions} attribute. For example, here's how you can specify the S are any subsequent {@code android:focusable} fields. If any focusable fields are found following this one, the system -applies the (@code actionNext} action to the current {@link android.widget.EditText} so the user can +applies the {@code "actionNext"} action to the current {@link android.widget.EditText} so the user can select Next to move to the next field. If there's no subsequent focusable field, the system applies the {@code "actionDone"} action. You can override this by setting the {@code @@ -263,7 +263,7 @@ disabled with {@code android:imeOptions="flagNoExtractUi"}.

If you want to provide suggestions to users as they type, you can use a subclass of {@link android.widget.EditText} called {@link android.widget.AutoCompleteTextView}. To implement -auto-complete, you must specify an (@link android.widget.Adapter) that provides the text +auto-complete, you must specify an {@link android.widget.Adapter} that provides the text suggestions. There are several kinds of adapters available, depending on where the data is coming from, such as from a database or an array.

-- cgit v1.2.3-59-g8ed1b