0
我想在android中通過adb關閉它。但我找不到正確的命令。 我試圖在providers.settings中搜索sqlite,但什麼都沒發現。 有沒有人知道正確的命令?
我想在android中通過adb關閉它。但我找不到正確的命令。 我試圖在providers.settings中搜索sqlite,但什麼都沒發現。 有沒有人知道正確的命令?
您可以使用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`
謝謝您的答覆。但它不能關閉物理鍵盤。 – Sorata