diff --git a/core/java/android/view/inputmethod/InputMethodInfo.java b/core/java/android/view/inputmethod/InputMethodInfo.java index c440c7bd40c2e..5df5811944347 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. + * + *

It should be defined in an XML resource file with an {@code <input-method>} element. + * For more information, see the guide to + * + * Creating an Input Method.

+ * + * @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 88b29776fa0f6..40f95cea1d188 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. * *

It should be defined in an XML resource file of the input method with the - * <subtype> element. For more information, see the guide to - * + * <subtype> element, which resides within an {@code <input-method>} element. + * For more information, see the guide to + * * Creating an Input Method.

+ * + * @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();