diff options
author | satok <satok@google.com> | 2011-09-02 17:12:42 +0900 |
---|---|---|
committer | satok <satok@google.com> | 2011-09-02 20:27:38 +0900 |
commit | a86f5e448cd6d29340ca6cbe509bc6384bc0d711 (patch) | |
tree | 14f2beefe9761a87db231f70d143a5e8a59d856e /core | |
parent | a2f69c914dbb8cbd8761bff3ec4399e500e62674 (diff) | |
download | frameworks_base-a86f5e448cd6d29340ca6cbe509bc6384bc0d711.zip frameworks_base-a86f5e448cd6d29340ca6cbe509bc6384bc0d711.tar.gz frameworks_base-a86f5e448cd6d29340ca6cbe509bc6384bc0d711.tar.bz2 |
Add an option for the implicitly selected subtype
Bug: 5057886
Change-Id: Iddde4724891501b4f18cade6a3d2c64b6124e58a
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodInfo.java | 4 | ||||
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodSubtype.java | 34 | ||||
-rwxr-xr-x | core/res/res/values/attrs.xml | 4 | ||||
-rw-r--r-- | core/res/res/values/public.xml | 1 |
4 files changed, 33 insertions, 10 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodInfo.java b/core/java/android/view/inputmethod/InputMethodInfo.java index 4ec4ff9..0119d03 100644 --- a/core/java/android/view/inputmethod/InputMethodInfo.java +++ b/core/java/android/view/inputmethod/InputMethodInfo.java @@ -164,7 +164,9 @@ public final class InputMethodInfo implements Parcelable { a.getString(com.android.internal.R.styleable .InputMethod_Subtype_imeSubtypeExtraValue), a.getBoolean(com.android.internal.R.styleable - .InputMethod_Subtype_isAuxiliary, false)); + .InputMethod_Subtype_isAuxiliary, false), + a.getBoolean(com.android.internal.R.styleable + .InputMethod_Subtype_overridesImplicitlyEnabledSubtype, false)); mSubtypes.add(subtype); } } diff --git a/core/java/android/view/inputmethod/InputMethodSubtype.java b/core/java/android/view/inputmethod/InputMethodSubtype.java index 8c51680..5670432 100644 --- a/core/java/android/view/inputmethod/InputMethodSubtype.java +++ b/core/java/android/view/inputmethod/InputMethodSubtype.java @@ -42,6 +42,7 @@ public final class InputMethodSubtype implements Parcelable { private static final String EXTRA_VALUE_KEY_VALUE_SEPARATOR = "="; private final boolean mIsAuxiliary; + private final boolean mOverridesImplicitlyEnabledSubtype; private final int mSubtypeHashCode; private final int mSubtypeIconResId; private final int mSubtypeNameResId; @@ -57,11 +58,12 @@ public final class InputMethodSubtype implements Parcelable { * @param locale The locale supported by the subtype * @param mode The mode supported by the subtype * @param extraValue The extra value of the subtype + * @param isAuxiliary true when this subtype is one shot subtype. * @hide */ - public InputMethodSubtype( - int nameId, int iconId, String locale, String mode, String extraValue) { - this(nameId, iconId, locale, mode, extraValue, false); + public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, + boolean isAuxiliary) { + this(nameId, iconId, locale, mode, extraValue, false, false); } /** @@ -72,18 +74,21 @@ public final class InputMethodSubtype implements Parcelable { * @param mode The mode supported by the subtype * @param extraValue The extra value of the subtype * @param isAuxiliary true when this subtype is one shot subtype. - * @hide + * @param overridesImplicitlyEnabledSubtype true when this subtype should be selected by default + * if no other subtypes are selected explicitly. Note that a subtype with this parameter being + * true will not be shown in the subtypes list. */ public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, - boolean isAuxiliary) { + boolean isAuxiliary, boolean overridesImplicitlyEnabledSubtype) { mSubtypeNameResId = nameId; mSubtypeIconResId = iconId; mSubtypeLocale = locale != null ? locale : ""; mSubtypeMode = mode != null ? mode : ""; mSubtypeExtraValue = extraValue != null ? extraValue : ""; mIsAuxiliary = isAuxiliary; + mOverridesImplicitlyEnabledSubtype = overridesImplicitlyEnabledSubtype; mSubtypeHashCode = hashCodeInternal(mSubtypeLocale, mSubtypeMode, mSubtypeExtraValue, - mIsAuxiliary); + mIsAuxiliary, mOverridesImplicitlyEnabledSubtype); } InputMethodSubtype(Parcel source) { @@ -97,8 +102,9 @@ public final class InputMethodSubtype implements Parcelable { s = source.readString(); mSubtypeExtraValue = s != null ? s : ""; mIsAuxiliary = (source.readInt() == 1); + mOverridesImplicitlyEnabledSubtype = (source.readInt() == 1); mSubtypeHashCode = hashCodeInternal(mSubtypeLocale, mSubtypeMode, mSubtypeExtraValue, - mIsAuxiliary); + mIsAuxiliary, mOverridesImplicitlyEnabledSubtype); } /** @@ -146,6 +152,14 @@ public final class InputMethodSubtype implements Parcelable { } /** + * @return true when this subtype is selected by default if no other subtypes are selected + * explicitly. Note that a subtype that returns true will not be shown in the subtypes list. + */ + public boolean overridesImplicitlyEnabledSubtype() { + return mOverridesImplicitlyEnabledSubtype; + } + + /** * @param context Context will be used for getting Locale and PackageManager. * @param packageName The package name of the IME * @param appInfo The application info of the IME @@ -244,6 +258,7 @@ public final class InputMethodSubtype implements Parcelable { dest.writeString(mSubtypeMode); dest.writeString(mSubtypeExtraValue); dest.writeInt(mIsAuxiliary ? 1 : 0); + dest.writeInt(mOverridesImplicitlyEnabledSubtype ? 1 : 0); } public static final Parcelable.Creator<InputMethodSubtype> CREATOR @@ -276,8 +291,9 @@ public final class InputMethodSubtype implements Parcelable { } private static int hashCodeInternal(String locale, String mode, String extraValue, - boolean isAuxiliary) { - return Arrays.hashCode(new Object[] {locale, mode, extraValue, isAuxiliary}); + boolean isAuxiliary, boolean overridesImplicitlyEnabledSubtype) { + return Arrays.hashCode(new Object[] {locale, mode, extraValue, isAuxiliary, + overridesImplicitlyEnabledSubtype}); } /** diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index b50c063..0bf5b0a 100755 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -2237,6 +2237,10 @@ InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it chooses a target subtype. --> <attr name="isAuxiliary" format="boolean" /> + <!-- Set true when this subtype should be selected by default if no other subtypes are + selected explicitly. Note that a subtype with this parameter being true will + not be shown in the subtypes list. --> + <attr name="overridesImplicitlyEnabledSubtype" format="boolean" /> <!-- The extra value of the subtype. This string can be any string and will be passed to the IME when the framework calls the IME with the subtype. --> <attr name="imeSubtypeExtraValue" format="string" /> diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index 6988f6b..bc2b907 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -2010,4 +2010,5 @@ <public type="attr" name="targetDescriptions" /> <public type="attr" name="directionDescriptions" /> + <public type="attr" name="overridesImplicitlyEnabledSubtype" /> </resources> |