顯示具有 android 標籤的文章。 顯示所有文章
顯示具有 android 標籤的文章。 顯示所有文章

2018年3月13日 星期二

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

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


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