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

637 B

title
KMManager.advanceToNextInputMode()

Summary

The advanceToNextInputMode() method switches to the next system keyboard input mode.

Syntax

KMManager.advanceToNextInputMode()

Description

Use this method to switch to the next system keyboard.

Examples

Example: Using advanceToNextInputMode()

The following script illustrates the use of advanceToNextInputMode():

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

    KMManager.advanceToNextInputMode();

See also