方法一 ;在代码中 可以这么设置
Window mWindow = getWindow();
WindowManager.LayoutParams lp = mWindow.getAttributes();
lp.dimAmount =0f;
方法二:在style 的xml 里 设置如下
<resources>
<style name="dialog" parent="@android:style/Theme.Dialog">
<item name="android:backgroundDimEnabled">false</item><!--activity不变暗-->
</style>
</resources>
设置为true, 背景变暗
Dialog = new Dialog(Activity, R.style.dialog);