<span style="font-size:18px;"><strong>public void setBrightness(int level) {
ContentResolver cr = getContentResolver();
Settings.System.putInt(cr, "screen_brightness", level);
Window window = getWindow();
LayoutParams attributes = window.getAttributes();
float flevel = level;
attributes.screenBrightness = flevel / 255;
getWindow().setAttributes(attributes);
} </strong></span>
android 调节屏幕亮度
最新推荐文章于 2025-04-15 11:50:41 发布
