如何设置屏幕亮度为DialogInterface

Mil*_*loš 0 android android-view

我想改变我的屏幕亮度,除了我要显示listView的一小部分.

这是针对Android的DialogInterface,我想知道如何做到这一点.在DialogInterface中,对话框具有正常亮度,所有其他元素在背景上以较小亮度进行.

谢谢.

jyo*_*ash 5

要将对话框界面的背景设置为暗淡,以下是代码段:

WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
/** set the dim amount of the settings activity */
lp.dimAmount = 0.5f;
dialog.getWindow().setAttributes(lp);
Run Code Online (Sandbox Code Playgroud)