public static interface KeyEventChannel.EventResponseHandler
Modifier and Type | Method and Description |
---|---|
void |
onKeyEventHandled(KeyEvent event)
Called whenever the framework responds that a given key event was handled by the framework.
|
void |
onKeyEventNotHandled(KeyEvent event)
Called whenever the framework responds that a given key event wasn't handled by the
framework.
|
void onKeyEventHandled(KeyEvent event)
event
- the event to be marked as being handled by the framework. Must not be null.void onKeyEventNotHandled(KeyEvent event)
event
- the event to be marked as not being handled by the framework. Must not be null.