我真的很想用一个按钮制作一个AlertDialog,有人可以用这个指导我。谢谢!
最佳答案
是的你可以:
new AlertDialog.Builder(this)
.setIcon(R.drawable.icon)
.setTitle("Error")
.setMessage("Please fill out the entire form")
.setPositiveButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
})
.create()
.show()
;
关于android - 带有单个按钮的AlertDialog?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5477876/