Android - 使用按钮更改屏幕的亮度

时间:2017-05-05 20:42:21

标签: java android brightness screen-brightness

int BrightnesValue= 0;
        try {
            BrightnesValue = Settings.System.getInt(
                    getContentResolver(), Settings.System.SCREEN_BRIGHTNESS);
        } catch (Settings.SettingNotFoundException e) {
            e.printStackTrace();
        }
        int SysBackLightValue = BrightnesValue-25;
        android.provider.Settings.System.putInt(getContentResolver(),
                android.provider.Settings.System.SCREEN_BRIGHTNESS,
                SysBackLightValue);

我想使用工具栏上的按钮以编程方式更改系统的亮度,如image here所示。这样,当第一次点击时,亮度降低,当再次点击时,亮度恢复到默认值。

0 个答案:

没有答案