Android-Android屏幕亮度设置
求教关于Android屏幕亮度调节的问题,屏幕亮度分两种,一种是系统的,一种是局限于应用内的,我希望是应用内的调节即可,一款读书软件。
现在有这么几种思路,也是在网上找的,居然都不可以,不知道为什么
一种是
1. private void brightnessMax() {
2. WindowManager.LayoutParams lp = getWindow().getAttributes();
3. lp.screenBrightness = 1.0f;
4. getWindow().setAttributes(lp);
5. }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试试这个
WindowManager.LayoutParams lp = getWindow().getAttributes();
if(viewModel.getScreenMode()==Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC){
lp.screenBrightness = -1.0f;
}else{
lp.screenBrightness = viewModel.getScreenBrightness()/255f;
}
getWindow().setAttributes(lp);
分享给你一篇文档,希望对你有所帮助
先
int curBrightnessValue = android.provider.Settings.System.getInt(getContentResolver(), android.provider.Settings.System.SCREEN_BRIGHTNESS);
然后
WindowManager.LayoutParams layoutParams = getWindow().getAttributes();
layoutParams.screenBrightness = curBrightnessValue/100.0f;
getWindow().setAttributes(layoutParams);