我想在android中以編程方式更改屏幕亮度。 目前我使用此代碼:在android中以編程方式更改屏幕亮度
WindowManager.LayoutParams lp = getWindow().getAttributes();
float brightness=1.0f;
lp.screenBrightness = brightness;
getWindow().setAttributes(lp);
但此示例代碼適用於蛋糕,而不是最新版本。我正在使用最新版本的SDK ..對於更新的Android版本,首選解決方案是什麼?
可能重複(http://stackoverflow.com/questions/5032588/cant-apply-system-screen-brightness-programmatically-in-android) – bummi 2014-09-22 13:23:23
增加對話框顯示的亮度http://stackoverflow.com/a/29091233/185022 – 2015-03-17 04:23:04