当前位置:   article > 正文

Android屏幕亮度调节_手机用settⅰngs软件怎么调亮度

手机用settⅰngs软件怎么调亮度

APP亮度调节

//获取系统亮度
Settings.System.getInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS);	//3 ~ 1023

//设置系统亮度
Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS,systemBrightness);

//获取系统模式
Settings.System.getInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE);

//设置系统亮度模式
Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE, systemMode);


//获取当前window亮度
Window window = activity.getWindow()
WindowManager.LayoutParams lp = window.getAttributes();
float nowBright = lp.screenBrightness;	// 0.0 ~ 1.0 & -1.0  -1.0表示自动调节

//设置当前window亮度
Window window = activity.getWindow();
WindowManager.LayoutParams lp = window.getAttributes();
lp.screenBrightness = brightness;
window.setAttributes(lp);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/643071
推荐阅读
相关标签
  

闽ICP备14008679号