美好的一天,我怎样才能改变我的背景AlertDialog中fragment?
AlertDialog当我单击按钮(片段-> 按钮-> 警报对话框)时,我的将显示。
我在实现我的AlertDialog和更改其背景颜色时尝试了以下代码:
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
builder.setTitle(R.string.scaleTitle);
builder.setView(R.layout.scale_layout);
builder.setNegativeButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
dialogInterface.dismiss();
}
});
AlertDialog alertDialog = builder.create();
builder.show();
alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.YELLOW));
但背景还是一样。
请问,我怎么可能改变它?谢谢你。
相关分类