尝试在 Android 手机上设置屏幕亮度
我正在尝试设置屏幕亮度,但是当我尝试使用 this.getWindow() 获取当前窗口时,我得到 null。这是为什么呢?我将在 setBrightness() 方法中发布所有代码。
System.putInt(getContentResolver(), System.SCREEN_BRIGHTNESS,
brightness);
Window window = getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
lp.screenBrightness = brightness / (float) 255;
window.setAttributes(lp);
I am trying to set the screen brightness but when I try and get the current window with this.getWindow() I get null. Why is this? I will post all of my code in my setBrightness() method.
System.putInt(getContentResolver(), System.SCREEN_BRIGHTNESS,
brightness);
Window window = getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
lp.screenBrightness = brightness / (float) 255;
window.setAttributes(lp);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要使用 System.putInt()...您已经在 lp 中设置了 screenBrightness!
以下代码有效:
Don't use System.putInt()... You already set the screenBrightness in the lp!
The following code works:
如果您使用搜索栏,请尝试这些行,
If you are using a seekbar, try these lines,
如果你从片段中调用它,请像这样在 getWindow() 之前添加 getActivity()
如果使用eekbar,不要让你的 brogress 为 0,因为它会让你的屏幕完全变黑(在 android 2.3 上)
If you call it from fragment add getActivity() before getWindow() like this
And if use seekbar dont let your brogress be 0, cause it can make your screen goes completly dark(on android 2.3)