1. 设置屏幕亮度
#获取当前亮度
adb shell settings get system screen_brightness
adb shell
settings put system screen_brightness 0 //设置最低屏幕亮度
settings put system screen_brightness 5000 //设置最高屏幕亮度
2. 设置屏幕灭屏时间
adb shell settings put system screen_off_timeout 600000 # 10 min
3.获取系统默认输入法
adb shell settings get secure default_input_method
#put命令更改默认输入法(将默认输入法改为com.sohu.inputmethod.sogouoem/.SogouIME)
adb shell settings put secure default_input_method com.sohu.inputmethod.sogouoem/.SogouIME
4.打开/关闭 飞行模式
adb shell settings put global airplane_mode_on 1 #打开
adb shell settings put global airplane_mode_on 0 #关闭