spiegel-keyman/android/docs/engine/KMManager/shouldCheckKeyboardUpdates.md
2024-10-31 10:08:17 +07:00

832 B

title
KMManager.shouldCheckKeyboardUpdates()

Summary

The shouldCheckKeyboardUpdates() method returns whether Keyman Engine should check for keyboard updates.

Syntax

KMManager.shouldCheckKeyboardUpdates()

Returns

Returns true if Keyman Engine should check for keyboard updates, false otherwise.

Description

Use this method to check if Keyman Engine should check for keyboard updates when the keyboard picker menu is displayed.

Examples

Example: Using shouldCheckKeyboardUpdates()

The following script illustrate the use of shouldCheckKeyboardUpdates():

    if (KMManager.shouldCheckKeyboardUpdates()) {
        // checking keyboard updates is enabled
    }

See also