计算机知识分享网

【android】adb命令控制屏幕的亮度

设置为最亮
adb shell settings put system screen_brightness 255
设置为最暗
adb shell settings put system screen_brightness 1
获取设置的亮度值
adb shell settings get system screen_brightness

#Android