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

766 B

title
KMManager.advanceToPreviousInputMethod()

Summary

The advanceToPreviousInputMethod() method switches to the previous system keyboard input mode.

Syntax

KMManager.advanceToPreviousInputMethod()

Description

Use this method to switch to the previous system keyboard.

When only 1 Keyman keyboard is installed, this is the default action for pressing the globe key.

Examples

Example: Using advanceToPreviousInputMethod()

The following script illustrates the use of advanceToPreviousInputMethod():

    // Remove the second keyboard in the list
    KMManager.removeKeyboard(this, 1);

    KMManager.advanceToPreviousInputMethod();

See also