答案 0 :(得分:0)
您可以使用InputMethodManager.setInputMethodEnabled(String id, boolean enabled)
做您想做的事。首先,您需要找到键盘的完整输入法ID - 很可能您可以在dumpsys input_method
输出中找到它。
然后,您可以使用service call input_method 28 s16 'input.method.name' i32 0
禁用和service call input_method 28 s16 'input.method.name' i32 1
重新启用输入法。
以下命令在Android 5.1手机上添加了Google Hindi Input
:
adb shell su 0 service call input_method 28 s16 'com.google.android.apps.inputmethod.hindi/.HindiInputMethodService' i32 1`
此命令已将其从已启用的输入法列表中删除:
adb shell su 0 service call input_method 28 s16 'com.google.android.apps.inputmethod.hindi/.HindiInputMethodService' i32 0`