gpt4 book ai didi

android - 更改屏幕亮度

转载 作者:搜寻专家 更新时间:2023-11-01 09:05:40 26 4
gpt4 key购买 nike

我是安卓新手。我想在单击按钮时将亮度更改为最大。但是亮度没有改变。下面给出了代码,请看一下:-

          int brightness=255;
Settings.System.putInt(getContentResolver(),
android.provider.Settings.System.SCREEN_BRIGHTNESS, brightness);
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.screenBrightness =brightness;
getWindow().setAttributes(lp);

除此之外我还添加了 在 list 文件中

我还需要添加什么......或者我应该适应哪些变化以反射(reflect)亮度变化。

最佳答案

尝试使用 0 到 1 之间的值。为此更改您的代码段:

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

关于android - 更改屏幕亮度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12052852/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com