帮我写一个安卓代码,给AlertDialog.Builder添加圆角
时间: 2023-04-03 11:01:00 浏览: 179
Android实现自定义圆角对话框Dialog的示例代码
好的,以下是添加圆角的代码示例:
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setView(view);
builder.setCancelable(true);
AlertDialog dialog = builder.create();
dialog.show();
// 设置圆角
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.getWindow().setLayout(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
dialog.getWindow().setBackgroundDrawableResource(R.drawable.dialog_bg); // dialog_bg为圆角背景图片的资源ID
注意:以上代码仅为示例,具体实现需要根据实际情况进行调整。
阅读全文