View.CheckInputConnectionProxy(View) Method

Definition

Called by the android.view.inputmethod.InputMethodManager when a view who is not the current input connection target is trying to make a call on the manager.

[Android.Runtime.Register("checkInputConnectionProxy", "(Landroid/view/View;)Z", "GetCheckInputConnectionProxy_Landroid_view_View_Handler")]
public virtual bool CheckInputConnectionProxy (Android.Views.View? view);
[<Android.Runtime.Register("checkInputConnectionProxy", "(Landroid/view/View;)Z", "GetCheckInputConnectionProxy_Landroid_view_View_Handler")>]
abstract member CheckInputConnectionProxy : Android.Views.View -> bool
override this.CheckInputConnectionProxy : Android.Views.View -> bool

Parameters

view
View

The View that is making the InputMethodManager call.

Returns

Return true to allow the call, false to reject.

Attributes

Remarks

Called by the android.view.inputmethod.InputMethodManager when a view who is not the current input connection target is trying to make a call on the manager. The default implementation returns false; you can override this to return true for certain views if you are performing InputConnection proxying to them.

Java documentation for android.view.View.checkInputConnectionProxy(android.view.View).

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.

Applies to