Android 调节屏幕亮度代码

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

public void setBrightness(int level) { 
 ContentResolver cr = getContentResolver(); 
 Settings.System.putInt(cr, "screen_brightness", level); 
 Window window = getWindow(); 
 LayoutParams attributes = window.getAttributes(); 
 float flevel = level; 
 attributes.screenBrightness = flevel / 255; 
 getWindow().setAttributes(attributes); 
}