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

int: The value in event.getKeyCode().

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 shortcut property of menu items.

Android reference for android.app.Dialog.onKeyShortcut.

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