当然可以!在Android中,你可以通过设置AlertDialog
的setIcon()
方法来自定义对话框的图标。这里有一个简单的例子:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("自定义图标");
builder.setMessage("这是一个带有自定义图标的AlertDialog");
builder.setIcon(R.drawable.your_custom_icon); // 使用你的自定义图标资源
// 添加确认按钮
builder.setPositiveButton("确认", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 点击确认按钮后的操作
}
});
// 显示对话框
builder.show();
将R.drawable.your_custom_icon
替换为你的自定义图标资源。现在,当你显示这个AlertDialog
时,它将显示你指定的自定义图标。