ListPopupWindow.InputMethodMode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Return the current value in #setInputMethodMode(int)
. -or- Control how the popup operates with an input method: one of
#INPUT_METHOD_FROM_FOCUSABLE
, #INPUT_METHOD_NEEDED
,
or #INPUT_METHOD_NOT_NEEDED
.
public virtual Android.Widget.ListPopupWindowInputMethodMode InputMethodMode { [Android.Runtime.Register("getInputMethodMode", "()I", "GetGetInputMethodModeHandler")] get; [Android.Runtime.Register("setInputMethodMode", "(I)V", "GetSetInputMethodMode_IHandler")] set; }
[<get: Android.Runtime.Register("getInputMethodMode", "()I", "GetGetInputMethodModeHandler")>]
[<set: Android.Runtime.Register("setInputMethodMode", "(I)V", "GetSetInputMethodMode_IHandler")>]
member this.InputMethodMode : Android.Widget.ListPopupWindowInputMethodMode with get, set
Property Value
- Attributes
Remarks
Property getter documentation:
Return the current value in #setInputMethodMode(int)
.
Java documentation for android.widget.ListPopupWindow.getInputMethodMode()
.
Property setter documentation:
Control how the popup operates with an input method: one of #INPUT_METHOD_FROM_FOCUSABLE
, #INPUT_METHOD_NEEDED
, or #INPUT_METHOD_NOT_NEEDED
.
If the popup is showing, calling this method will take effect only the next time the popup is shown or through a manual call to the #show()
method.
Java documentation for android.widget.ListPopupWindow.setInputMethodMode(int)
.
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.