我需要让自定义对话框透明。
我该怎么做?
答案 0 :(得分:10)
您还可以在构造函数
中使用以下行getWindow().setBackgroundDrawable(new ColorDrawable(0));
答案 1 :(得分:9)
答案 2 :(得分:2)
要使Dialog的背景透明,您只需将对话框的主题设置为 android.R.style.Theme Translucent NoTitleBar 。例如: -
new AlertDialog.Builder(context, android.R.style.Theme_Translucent_NoTitleBar).show();
答案 3 :(得分:0)
您可以将背景颜色设置为Color.Transparent