Android修改屏幕亮度

只改变当前程序android屏幕亮度 )

lp.screenBrightness 取值 0.0 -- 1.0
※设定值(float)的范围,默认小于0(系统设定)、0.0(暗)~1.0(亮)
※调用处理的地方,例如,Activity.onCreate()等等


WindowManager.LayoutParams lp = getWindow().getAttributes();

lp.screenBrightness = 1.0f;

getWindow().setAttributes(lp);

From: http://www.apkbus.com/android-84-1-1.html

你可能感兴趣的:(android,float)