2016-05-18 88 views

回答

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` 
+0

謝謝您的答覆。但它不能關閉物理鍵盤。 – Sorata