Android.InputMethodServices.InputMethodService.OnStartInputView Method
Called when the input view is being shown and input has started on a new editor.

Syntax

[Android.Runtime.Register("onStartInputView", "(Landroid/view/inputmethod/EditorInfo;Z)V", "GetOnStartInputView_Landroid_view_inputmethod_EditorInfo_ZHandler")]
public virtual void OnStartInputView (Android.Views.InputMethods.EditorInfo info, bool restarting)

Parameters

info
Description of the type of text being edited.
restarting
Set to true if we are restarting input on the same text field as before.

Remarks

Called when the input view is being shown and input has started on a new editor. This will always be called after InputMethodService.OnStartInput(Android.Views.InputMethods.EditorInfo, System.Boolean), allowing you to do your general setup there and just view-specific setup here. You are guaranteed that InputMethodService.OnCreateInputView will have been called some time before this function is called.

[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