Android.Views.InputMethods.InputMethodManager.HideSoftInputFromWindow Method
Request to hide the soft input window from the context of the window that is currently accepting input.

Syntax

[Android.Runtime.Register("hideSoftInputFromWindow", "(Landroid/os/IBinder;ILandroid/os/ResultReceiver;)Z", "")]
public bool HideSoftInputFromWindow (Android.OS.IBinder windowToken, [Android.Runtime.GeneratedEnum] HideSoftInputFlags flags, Android.OS.ResultReceiver resultReceiver)

Parameters

windowToken
The token of the window that is making the request, as returned by Android.Views.View.WindowToken.
flags
Provides additional operating flags. Currently may be 0 or have the InputMethodManager.HIDE_IMPLICIT_ONLY bit set.
resultReceiver
If non-null, this will be called by the IME when it has processed your request to tell you what it has done. The result code you receive may be either InputMethodManager.RESULT_UNCHANGED_SHOWN, InputMethodManager.RESULT_UNCHANGED_HIDDEN, InputMethodManager.RESULT_SHOWN, or InputMethodManager.RESULT_HIDDEN.

Returns

Documentation for this section has not yet been entered.

Remarks

Request to hide the soft input window from the context of the window that is currently accepting input. This should be called as a result of the user doing some actually than fairly explicitly requests to have the input window hidden.

[Android Documentation]

Requirements

Namespace: Android.Views.InputMethods
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 3