我创建了一个对话框custom_view
。All width
= wrap_content
,但是,对话框本身,其背景是白色和match_parent
。如何摆脱颜色,设置透明和改变宽度?
val dialog = with(Builder(this.context, R.style.ProgressDialogTheme)) {
setView(R.layout.load_alert_dialog)
setCancelable(false)
setCanceledOnTouchOutside(false)
create()
}
由于某种原因,其他解决方案不起作用。
我的版本:
themes.xml
.@android:color/transparent
或将同一行添加到colors.xml
.your_custom_dialog.xml
管理background
等