Android
通過adb shell命令切換手機的輸入法
# 啟用
ime enable com.google.android.apps.inputmethod.zhuyin/.ZhuyinInputMethodService
# 停用
ime diable com.google.android.apps.inputmethod.zhuyin/.ZhuyinInputMethodService
# 設定
ime set com.google.android.apps.inputmethod.zhuyin/.ZhuyinInputMethodService
給予/拒絕權限
adb shell pm grant com.name.app android.permission.READ_PROFILE
adb shell pm revoke com.name.app android.permission.READ_PROFILE
adb 設定語系/語言
adb shell am start -a android.settings.LOCALE_SETTINGS
Last updated