2018年3月13日 星期二

[Android] 開頁面後調整亮度,離開後回復

只要三行,不用設權限,只要三行


WindowManager.LayoutParams layout = getWindow().getAttributes();
    layout.screenBrightness = 1F;
    getWindow().setAttributes(layout);