Android.Views.View.OnCheckIsTextEditor Method
Check whether the called view is a text editor, in which case it would make sense to automatically display a soft input window for it.

Syntax

[Android.Runtime.Register("onCheckIsTextEditor", "()Z", "GetOnCheckIsTextEditorHandler")]
public virtual bool OnCheckIsTextEditor ()

Returns

Documentation for this section has not yet been entered.

Remarks

Check whether the called view is a text editor, in which case it would make sense to automatically display a soft input window for it. Subclasses should override this if they implement View.OnCreateInputConnection(Android.Views.InputMethods.EditorInfo) to return true if a call on that method would return a non-null InputConnection, and they are really a first-class editor that the user would normally start typing on when the go into a window containing your view.

The default implementation always returns false. This does not mean that its View.OnCreateInputConnection(Android.Views.InputMethods.EditorInfo) will not be called or the user can not otherwise perform edits on your view; it is just a hint to the system that this is not the primary purpose of this view.

[Android Documentation]

Requirements

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