PopupWindow.SoftInputMode 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.
Returns the current value in #setSoftInputMode(int). -or- Sets the operating mode for the soft input area.
public virtual Android.Views.SoftInput SoftInputMode { [Android.Runtime.Register("getSoftInputMode", "()I", "GetGetSoftInputModeHandler")] get; [Android.Runtime.Register("setSoftInputMode", "(I)V", "GetSetSoftInputMode_IHandler")] set; }
[<get: Android.Runtime.Register("getSoftInputMode", "()I", "GetGetSoftInputModeHandler")>]
[<set: Android.Runtime.Register("setSoftInputMode", "(I)V", "GetSetSoftInputMode_IHandler")>]
member this.SoftInputMode : Android.Views.SoftInput with get, set
Property Value
int : The desired mode, see WindowManager.LayoutParams.softInputMode for the full list. Value is either 0 or a combination of the following: WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIFIED WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION
- Attributes
Remarks
Property getter documentation:
Returns the current value in #setSoftInputMode(int).
Java documentation for android.widget.PopupWindow.getSoftInputMode().
Property setter documentation:
Sets the operating mode for the soft input area.
Java documentation for android.widget.PopupWindow.setSoftInputMode(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.