安卓开发 AlertDialog 美化
时间: 2023-08-04 20:07:03 浏览: 141
android AlertDialog
4星 · 用户满意度95%
您可以使用自定义布局来美化 AlertDialog。首先,创建一个 XML 文件,其中包含您想要的布局和样式。然后,使用以下代码创建 AlertDialog 并使用 setView() 方法将自定义布局添加到对话框中:
```
AlertDialog.Builder builder = new AlertDialog.Builder(context);
View customLayout = LayoutInflater.from(context).inflate(R.layout.custom_layout, null);
builder.setView(customLayout);
AlertDialog dialog = builder.create();
dialog.show();
```
要设置对话框的样式,您可以在自定义布局的 XML 文件中添加样式属性,例如背景颜色或字体大小。
阅读全文