创建具有暗灰色背景的对话框

时间:2013-11-18 17:17:47

标签: android xml android-alertdialog

我创建了一个单击按钮时出现的对话框。我为它做了一个自定义布局并将其编码为:

final Dialog dialog = new Dialog (CheckpointsActivity.this, android.R.style.Theme_Translucent);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.alert_continue);
//rest of the code...

这就是Dialog现在的样子: enter image description here

这就是我想要它的样子:

enter image description here

在背景中应该有很多暗的渐变效果。我似乎无法找到有关如何实现这一目标的任何信息。

1 个答案:

答案 0 :(得分:0)

你可以创建一个具有相同背景和渐变的对话框,然后在上面创建ui。