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

808 B

title
KMManager.setShouldCheckKeyboardUpdates()

Summary

The setShouldCheckKeyboardUpdates() method sets whether Keyman Engine should check for keyboard updates.

Syntax

KMManager.setShouldCheckKeyboardUpdates(boolean newValue)

Parameters

newValue
If false, Keyman Engine will not check for keyboard updates.

Description

Use this method to enable or disable keyboard updates when the keyboard picker menu is displayed.

Examples

Example: Using setShouldCheckKeyboardUpdates()

The following script illustrate the use of setShouldCheckKeyboardUpdates():

    // Disable keyboard updates.
    KMManager.setShouldCheckKeyboardUpdates(false);

See also