通过AlertDialog或者activity的dialog主题弹出框,但是都会让周围变灰色。如果不想让周围变成灰色,要怎么做?
------解决方案--------------------
假设你的AlertDialog对象名称为dialog,那么,在dialog.show();代码后面添加以下代码:
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
lp.dimAmount =0f;
dialog.getWindow().setAttributes(lp);