关于获取安卓手机系统输入法和设置输入法

关于获取安卓手机系统输入法和设置输入法

获取输入法列表

adb shell ime list -s
出来下面的
io.appium.android.ime/.UnicodeIME
com.sec.android.inputmethod/.SamsungKeypad

设置默认的输入法

adb shell settings get secure default_input_method
com.sec.android.inputmethod/.SamsungKeypad

设置输入法为默认输入法

adb shell settings put secure default_input_method com.sohu.inputmethod.sogou/.SogouIME
adb shell settings put secure default_input_method +输入法

设置为appium输入法

adb shell settings put secure default_input_method io.appium.android.ime/.UnicodeIME

设置回系统三星系统手机手机输入法

adb shell settings put secure default_input_method com.sec.android.inputmethod/.SamsungKeypad

你可能感兴趣的:(杂项)