首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

调剂屏幕亮度

2012-08-22 
调节屏幕亮度WindowManager.LayoutParams lp getWindow().getAttributes()lp.screenBrightness 1.0f

调节屏幕亮度

WindowManager.LayoutParams lp = getWindow().getAttributes();     lp.screenBrightness = 1.0f; getWindow().setAttributes(lp);

热点排行