调节当前页面的屏幕亮度

来源:互联网 发布:过山车大亨3 mac 中文 编辑:程序博客网 时间:2024/06/04 19:18
private void setWindowBrightness(int brightness) {    Window window = getWindow();    WindowManager.LayoutParams lp = window.getAttributes();    lp.screenBrightness = brightness / 255.0f;    window.setAttributes(lp);}