diff options
author | satok <satok@google.com> | 2011-10-14 14:48:59 +0900 |
---|---|---|
committer | satok <satok@google.com> | 2011-10-18 20:28:23 +0900 |
commit | 44b75030931d9c65c9e495a86d11d71da59b4429 (patch) | |
tree | 63ad85a89a6fb70ac4eeb6f9deb9e8cc3878b4d1 /core/java/android/view/inputmethod | |
parent | 840b8a678537519c27ddf2f818494eaa20a135d4 (diff) | |
download | frameworks_base-44b75030931d9c65c9e495a86d11d71da59b4429.zip frameworks_base-44b75030931d9c65c9e495a86d11d71da59b4429.tar.gz frameworks_base-44b75030931d9c65c9e495a86d11d71da59b4429.tar.bz2 |
Add documents for the spell checker framework and the input method subtype
Bug: 4973788
Change-Id: I7e650f336ba1bb8949899e8b2355e6d492a2e4b2
Diffstat (limited to 'core/java/android/view/inputmethod')
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodSubtype.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodSubtype.java b/core/java/android/view/inputmethod/InputMethodSubtype.java index 34c9c29..93caabe 100644 --- a/core/java/android/view/inputmethod/InputMethodSubtype.java +++ b/core/java/android/view/inputmethod/InputMethodSubtype.java @@ -35,6 +35,13 @@ import java.util.Locale; * Subtype can describe locale (e.g. en_US, fr_FR...) and mode (e.g. voice, keyboard...), and is * used for IME switch and settings. The input method subtype allows the system to bring up the * specified subtype of the designated input method 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"> + * Creating an Input Method</a>.</p> + * */ public final class InputMethodSubtype implements Parcelable { private static final String TAG = InputMethodSubtype.class.getSimpleName(); |