InputMethodManager.GetEnabledInputMethodSubtypeList Method

Definition

Returns a list of enabled input method subtypes for the specified input method info.

[Android.Runtime.Register("getEnabledInputMethodSubtypeList", "(Landroid/view/inputmethod/InputMethodInfo;Z)Ljava/util/List;", "")]
public System.Collections.Generic.IList<Android.Views.InputMethods.InputMethodSubtype> GetEnabledInputMethodSubtypeList (Android.Views.InputMethods.InputMethodInfo? imi, bool allowsImplicitlyEnabledSubtypes);
[<Android.Runtime.Register("getEnabledInputMethodSubtypeList", "(Landroid/view/inputmethod/InputMethodInfo;Z)Ljava/util/List;", "")>]
member this.GetEnabledInputMethodSubtypeList : Android.Views.InputMethods.InputMethodInfo * bool -> System.Collections.Generic.IList<Android.Views.InputMethods.InputMethodSubtype>

Parameters

imi
InputMethodInfo

The InputMethodInfo whose subtypes list will be returned. If null, returns enabled subtypes for the currently selected InputMethodInfo.

allowsImplicitlyEnabledSubtypes
Boolean

A boolean flag to allow to return the implicitly enabled subtypes. If an input method info doesn't have enabled subtypes, the framework will implicitly enable subtypes according to the current system language.

Returns

Attributes

Remarks

Returns a list of enabled input method subtypes for the specified input method info.

On multi user environment, this API returns a result for the calling process user.

Java documentation for android.view.inputmethod.InputMethodManager.getEnabledInputMethodSubtypeList(android.view.inputmethod.InputMethodInfo, boolean).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to