AbstractInputMethodService.OnKeyMultiple(Keycode, Int32, KeyEvent) Method

Definition

Called when a user's interaction with an analog control, such as flinging a trackball, generates simulated down/up events for the same key multiple times in quick succession.

[Android.Runtime.Register("onKeyMultiple", "(IILandroid/view/KeyEvent;)Z", "GetOnKeyMultiple_IILandroid_view_KeyEvent_Handler")]
public abstract bool OnKeyMultiple (Android.Views.Keycode keyCode, int count, Android.Views.KeyEvent? e);
[<Android.Runtime.Register("onKeyMultiple", "(IILandroid/view/KeyEvent;)Z", "GetOnKeyMultiple_IILandroid_view_KeyEvent_Handler")>]
abstract member OnKeyMultiple : Android.Views.Keycode * int * Android.Views.KeyEvent -> bool

Parameters

keyCode
Keycode

The value in event.getKeyCode().

count
Int32

Number of pairs as returned by event.getRepeatCount().

Returns

If you handled the event, return true. If you want to allow the event to be handled by the next receiver, return false.

Implements

Attributes

Remarks

Called when a user's interaction with an analog control, such as flinging a trackball, generates simulated down/up events for the same key multiple times in quick succession.

Java documentation for android.view.KeyEvent.Callback.onKeyMultiple(int, int, android.view.KeyEvent).

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