Android使背景燈(Brightness)高亮的方法

wjaning發表於2021-09-09

WindowManager.LayoutParams lp=getWindow().getAttributes();
圖片描述        lp.screenBrightness=1.0f;

LayoutParams的screenBrightness引數是一個百分比0表示最暗,1即100%表示最亮。
這裡的1.0f即表示100%,將螢幕背景燈開到最亮。

注意,這個方法只在Android1.5版本才有,之前的版本沒有。寫出來的apk在HTC G2(magic)上測試透過。

[程式碼]java程式碼:

private void SetBright(float light)    {  

      WindowManager.LayoutParamslp=getWindow().getAttributes();

      lp.screenBrightness=light;        

      getWindow().setAttributes(lp);     

}

原文連結:http://www.apkbus.com/blog-792467-60530.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2983/viewspace-2816042/,如需轉載,請註明出處,否則將追究法律責任。

相關文章