diff options
author | Scott Main <smain@google.com> | 2013-10-18 16:07:47 -0700 |
---|---|---|
committer | Scott Main <smain@google.com> | 2013-10-18 16:09:51 -0700 |
commit | 5df0631003392c416c9617458dc2814f9eaec317 (patch) | |
tree | dcf80a58ac6eaccaee404dc96e4b4b29c9a2b86c /core/java/android/view/inputmethod | |
parent | 96844ed886cc887a34bfc2fd04fc569d9c098623 (diff) | |
download | frameworks_base-5df0631003392c416c9617458dc2814f9eaec317.zip frameworks_base-5df0631003392c416c9617458dc2814f9eaec317.tar.gz frameworks_base-5df0631003392c416c9617458dc2814f9eaec317.tar.bz2 |
add xml attributes to IME javadoc
Change-Id: I7a3505753188ba23777391a286d8595ed64777cb
Diffstat (limited to 'core/java/android/view/inputmethod')
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodInfo.java | 11 | ||||
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodSubtype.java | 17 |
2 files changed, 26 insertions, 2 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodInfo.java b/core/java/android/view/inputmethod/InputMethodInfo.java index c440c7b..5df5811 100644 --- a/core/java/android/view/inputmethod/InputMethodInfo.java +++ b/core/java/android/view/inputmethod/InputMethodInfo.java @@ -45,6 +45,17 @@ import java.util.Map; /** * This class is used to specify meta information of an input method. + * + * <p>It should be defined in an XML resource file with an {@code <input-method>} element. + * For more information, see the guide to + * <a href="{@docRoot}guide/topics/text/creating-input-method.html"> + * Creating an Input Method</a>.</p> + * + * @see InputMethodSubtype + * + * @attr ref android.R.styleable#InputMethod_settingsActivity + * @attr ref android.R.styleable#InputMethod_isDefault + * @attr ref android.R.styleable#InputMethod_supportsSwitchingToNextInputMethod */ public final class InputMethodInfo implements Parcelable { static final String TAG = "InputMethodInfo"; diff --git a/core/java/android/view/inputmethod/InputMethodSubtype.java b/core/java/android/view/inputmethod/InputMethodSubtype.java index 88b2977..40f95ce 100644 --- a/core/java/android/view/inputmethod/InputMethodSubtype.java +++ b/core/java/android/view/inputmethod/InputMethodSubtype.java @@ -38,9 +38,22 @@ import java.util.Locale; * the specified subtype of the designated IME directly. * * <p>It should be defined in an XML resource file of the input method with the - * <code><subtype></code> element. For more information, see the guide to - * <a href="{@docRoot}resources/articles/creating-input-method.html"> + * <code><subtype></code> element, which resides within an {@code <input-method>} element. + * For more information, see the guide to + * <a href="{@docRoot}guide/topics/text/creating-input-method.html"> * Creating an Input Method</a>.</p> + * + * @see InputMethodInfo + * + * @attr ref android.R.styleable#InputMethod_Subtype_label + * @attr ref android.R.styleable#InputMethod_Subtype_icon + * @attr ref android.R.styleable#InputMethod_Subtype_imeSubtypeLocale + * @attr ref android.R.styleable#InputMethod_Subtype_imeSubtypeMode + * @attr ref android.R.styleable#InputMethod_Subtype_imeSubtypeExtraValue + * @attr ref android.R.styleable#InputMethod_Subtype_isAuxiliary + * @attr ref android.R.styleable#InputMethod_Subtype_overridesImplicitlyEnabledSubtype + * @attr ref android.R.styleable#InputMethod_Subtype_subtypeId + * @attr ref android.R.styleable#InputMethod_Subtype_isAsciiCapable */ public final class InputMethodSubtype implements Parcelable { private static final String TAG = InputMethodSubtype.class.getSimpleName(); |