Dialog.OnKeyShortcut(Keycode, KeyEvent) Method

Definition

Called when a key shortcut event is not handled by any of the views in the Dialog.

[Android.Runtime.Register("onKeyShortcut", "(ILandroid/view/KeyEvent;)Z", "GetOnKeyShortcut_ILandroid_view_KeyEvent_Handler")]
public virtual bool OnKeyShortcut (Android.Views.Keycode keyCode, Android.Views.KeyEvent e);
[<Android.Runtime.Register("onKeyShortcut", "(ILandroid/view/KeyEvent;)Z", "GetOnKeyShortcut_ILandroid_view_KeyEvent_Handler")>]
abstract member OnKeyShortcut : Android.Views.Keycode * Android.Views.KeyEvent -> bool
override this.OnKeyShortcut : Android.Views.Keycode * Android.Views.KeyEvent -> bool

Parameters

keyCode
Keycode

The value in event.getKeyCode().

e
KeyEvent

Description of the key event.

Returns

True if the key shortcut was handled.

Attributes

Remarks

Called when a key shortcut event is not handled by any of the views in the Dialog. Override this method to implement global key shortcuts for the Dialog. Key shortcuts can also be implemented by setting the MenuItem#setShortcut(char, char) shortcut property of menu items.

Java documentation for android.app.Dialog.onKeyShortcut(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