Språk

IInputMethodSession.DispatchKeyEvent Method

Definition

This method is called when a key is pressed.

[Android.Runtime.Register("dispatchKeyEvent", "(ILandroid/view/KeyEvent;Landroid/view/inputmethod/InputMethodSession$EventCallback;)V", "GetDispatchKeyEvent_ILandroid_view_KeyEvent_Landroid_view_inputmethod_InputMethodSession_EventCallback_Handler:Android.Views.InputMethods.IInputMethodSessionInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void DispatchKeyEvent(int seq, Android.Views.KeyEvent? e, Android.Views.InputMethods.IInputMethodSessionEventCallback? callback);
[<Android.Runtime.Register("dispatchKeyEvent", "(ILandroid/view/KeyEvent;Landroid/view/inputmethod/InputMethodSession$EventCallback;)V", "GetDispatchKeyEvent_ILandroid_view_KeyEvent_Landroid_view_inputmethod_InputMethodSession_EventCallback_Handler:Android.Views.InputMethods.IInputMethodSessionInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member DispatchKeyEvent : int * Android.Views.KeyEvent * Android.Views.InputMethods.IInputMethodSessionEventCallback -> unit

Parameters

seq
Int32
e
KeyEvent

The key event.

Attributes

Remarks

This method is called when a key is pressed. When done with the event, the implementation must call back on callback with its result.

If the input method wants to handle this event, return true, otherwise return false and the caller (i.e. the application) will handle the event.

Android reference for android.view.inputmethod.InputMethodSession.dispatchKeyEvent.

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

See also