本文主要是介绍android- 改变Dialog 背景透明度,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在xml-style中设置:
<style name="CustomDialog" parent="@android:style/Theme.Dialog"><item name="android:backgroundDimAmount">0.2</item> </style>
用代码实现:
Dialog dialog = new Dialog(this, R.style.CustomProgressDialog);LayoutInflater inflater = LayoutInflater.from(this);View layout = inflater.inflate(R.layout.mydialog, null);dialog.setContentView(layout);//设置背景透明度,0~1.0 默认0.5dialog.getWindow().setDimAmount(0.1f);
这篇关于android- 改变Dialog 背景透明度的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!