2
A
回答
4
You can use this API。這將改變你的窗口而不是整個系統的屏幕亮度。
// Make the screen full bright for this activity.
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.screenBrightness = 1.0f;
getWindow().setAttributes(lp);
2
這code snippet應該可以幫助您
pdlg = ProgressDialog.show(getParent(), "Loading...", "");
WindowManager.LayoutParams lp = pdlg.getWindow().getAttributes();
p.dimAmount=0.0f; //Dim Amount
pdlg.getWindow().setAttributes(lp); //Applying properties to progress dialog
pdlg.dismiss(); //Dismiss the dialog
1
嘿,你可以設置系統,亮度是這樣的:
//Set the system brightness using the brightness variable value
System.putInt(cResolver, System.SCREEN_BRIGHTNESS, brightness);
//Get the current window attributes
LayoutParams layoutpars = window.getAttributes();
//Set the brightness of this window
layoutpars.screenBrightness = brightness/(float)255;
//Apply attribute changes to this window
window.setAttributes(layoutpars);
或者,你可以參考這個完整tutorial
相關問題
- 1. 設置Android屏幕亮度
- 2. 如何在Android中設置屏幕亮度和字體比例
- 3. 如何設置屏幕亮度?
- 4. 如何設置SmartWatch屏幕亮度?
- 5. Android SDK:你如何設置屏幕亮度
- 6. Android的設置屏幕亮度爲0關閉屏幕 - 如何避免
- 7. C#設置屏幕亮度Windows 7
- 8. 控制屏幕設置(除了亮度)
- 9. Android屏幕類型/亮度
- 10. 在android中更新屏幕亮度
- 11. 如何調屏幕亮度
- 12. 試圖在Android手機上設置屏幕亮度
- 13. 無法保持屏幕亮度設置在android 5.0 ++
- 14. 如何在WP7上設置屏幕的亮度
- 15. 如何在Android應用程序內部設置屏幕亮度本地
- 16. Android中的屏幕亮度值
- 17. 如何使用淡入淡出動畫設置屏幕亮度?
- 18. 如何設置屏幕亮度爲DialogInterface它
- 19. 如何在Android中更改手機主屏幕的亮度?
- 20. 如何在屏幕中心設置android進度條
- 21. 在Android的另一個活動中調用方法來設置屏幕亮度
- 22. Android屏幕亮度最大值?
- 23. Android 2.2:調整屏幕亮度
- 24. iOS:在應用處於後臺時設置屏幕亮度
- 25. 如何處理屏幕亮度
- 26. 如何更改屏幕亮度?
- 27. 如何降低屏幕的亮度?
- 28. 如何調暗屏幕亮度完全
- 29. 如何使用搜索欄提高Android中的屏幕亮度?
- 30. 當自動亮度開啓時如何更改屏幕亮度?
你可以用」 t在全球範圍內調整屏幕亮度;注意這個問題http://stackoverflow.com/questions/6158628/android-short-screen-brightness-code –
是啊..它只適用於你的窗口。 – Ronnie