如何在Android上显示警报对话框?
作者:互联网
我想显示一个对话框/弹出窗口,其中显示一条消息,显示“您确定要删除此条目吗?”用一个按钮说“删除”.触摸删除时,应删除该条目,否则不删除.
我为这些按钮编写了一个单击侦听器,但是如何调用对话框或弹出窗口及其功能?
解决方法:
您可以为此使用AlertDialog并使用其Builder类构造一个.下面的示例使用仅接受Context的默认构造函数,因为对话框将从您传入的Context继承正确的主题,但是还有一个构造函数,允许您指定特定的主题资源作为第二个参数,如果您希望这样做.
new AlertDialog.Builder(context)
.setTitle("Delete entry")
.setMessage("Are you sure you want to delete this entry?")
// Specifying a listener allows you to take an action before dismissing the dialog.
// The dialog is automatically dismissed when a dialog button is clicked.
.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// Continue with delete operation
}
})
// A null listener allows the button to dismiss the dialog and take no further action.
.setNegativeButton(android.R.string.no, null)
.setIcon(android.R.drawable.ic_dialog_alert)
.show();
标签:android,android-dialog 来源: https://codeday.me/bug/20190911/1803542.html