mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
651 B
651 B
| title |
|---|
| onKeyboardShown() |
Summary
The onKeyboardShown() event is called when the keyboard has been
shown.
Syntax
public void onKeyboardShown()
Description
Implement this method to handle keyboard shown event.
Examples
Example: Using onKeyboardShown()
The following script illustrate the use of onKeyboardShown():
@Override
public void onKeyboardShown() {
// handle keyboard shown event here
}