来源:https://zhidao.baidu.com/question/873169063187894412.html
第一种是在样式文件styles.xml中添加新的样式,父样式指向的是默认的Dialog样式,修改如下,然后你的Dialog用你添加的样式就可以了.
<resources>
<style name="DialogStyle" parent="@android:style/Theme.Dialog">
<!-- dialog背景样式 -->
<item name="android:windowBackground"> @android:color/transparent </item>
<!-- 背景透明 -->
<item name="android:backgroundDimEnabled">false</item> </style>
</resources>
第二种是在代码中修改 随自己要求设置
// 设置屏幕背景变暗
private void setScreenBgDarken() {
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.alpha = 0.5f;
lp.dimAmount = 0.5f;
getWindow().setAttributes(lp);
网友评论