Android.InputMethodServices.InputMethodService.OnConfigureWindow Method
Update the given window's parameters for the given mode.

Syntax

[Android.Runtime.Register("onConfigureWindow", "(Landroid/view/Window;ZZ)V", "GetOnConfigureWindow_Landroid_view_Window_ZZHandler")]
public virtual void OnConfigureWindow (Android.Views.Window win, bool isFullscreen, bool isCandidatesOnly)

Parameters

win
The input method's window.
isFullscreen
If true, the window is running in fullscreen mode and intended to cover the entire application display.
isCandidatesOnly
If true, the window is only showing the candidates view and none of the rest of its UI. This is mutually exclusive with fullscreen mode.

Remarks

Update the given window's parameters for the given mode. This is called when the window is first displayed and each time the fullscreen or candidates only mode changes.

The default implementation makes the layout for the window MATCH_PARENT x MATCH_PARENT when in fullscreen mode, and MATCH_PARENT x WRAP_CONTENT when in non-fullscreen mode.

[Android Documentation]

Requirements

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