gpt4 book ai didi

不会崩溃的Android屏幕亮度

转载 作者:行者123 更新时间:2023-11-29 22:23:24 25 4
gpt4 key购买 nike

我有一项提高屏幕亮度的 Activity

/* 调高屏幕亮度 */
this.getWindow().getAttributes().screenBrightness = 1;

我发现这个内置的 android 函数会使一些手机崩溃。

是否有更通用的方法来提高屏幕亮度?

最佳答案

设置属性的正确方法是使用setAttributes():

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

关于不会崩溃的Android屏幕亮度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6589412/

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