KMManager.setCanRemoveKeyboard()
Summary
The setCanRemoveKeyboard() method sets whether removing a keyboard is allowed, like in the keyboard picker menu.
Syntax
void KMManager.setCanRemoveKeyboard(boolean newValue)
Parameters
newValuetrueif removing a keyboard is allowed,falseotherwise.
Description
Use this method to grant the end user permission to remove keyboards from the keyboard list. If set to false, the installed keyboard list is permanent.
Examples
Example: Using setCanRemoveKeyboard()
The following script illustrates the use of setCanRemoveKeyboard():
// Disable removing keyboards
KMManager.setCanRemoveKeyboard(false);


