Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

On this page

onKeyboardLoaded()

Summary

The onKeyboardLoaded() event is called when the keyboard has been loaded for the first time.

Syntax

public void onKeyboardLoaded(KeyboardType keyboardType)

Parameters

keyboardType
The keyboard type that has been loaded. KEYBOARD_TYPE_INAPP or KEYBOARD_TYPE_SYSTEM.

Description

Implement this method to handle keyboard loaded event.

Examples

Example: Using onKeyboardLoaded()

The following script illustrate the use of onKeyboardLoaded():

    @Override
    public void onKeyboardLoaded(KeyboardType keyboardType) {
        // handle keyboard loaded event here
    }

See also