方法1:
adb shell “ime enable com.sohu.inputmethod.sogou/.SogouIME” //需要先激活应用adb shell “ime set com.sohu.inputmethod.sogou/.SogouIME” //设置默认输入法
方法2:修改db数据库方式
adb shell “ime enable com.sohu.inputmethod.sogou/.SogouIME” //需要先激活应用adb push sqlite /data/local/tmp/sqliteadb push SetInputMethod.sh /data/local/tmp/SetInputMethod.shadb shell “chmod 755 /data/local/tmp/SetInputMethod.sh;chmod 755 /data/local/tmp/sqlite”adb shell “/system/bin/sh /data/local/tmp/SetInputMethod.sh com.sohu.inputmethod.sogou/.SogouIme” //设置默认输入法
合作联系邮箱:cofface#cofface.com(请将#替换为@)
转载请注明来源:Cofface Blog » [cofface]Android手机设置默认输入法方法