gpt4 book ai didi

android - 如何在 Android 上显示警报对话框?

转载 作者:IT老高 更新时间:2023-10-28 12:48:12 25 4
gpt4 key购买 nike

我想向用户显示一个对话框/弹出窗口,其中显示“您确定要删除此条目吗?”一个按钮,上面写着“删除”。当 Delete 被触摸时,它应该删除那个条目,否则什么都没有。

我已经为这些按钮编写了一个点击监听器,但是如何调用对话框或弹出窗口及其功能?

最佳答案

您可以为此使用 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 上显示警报对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2115758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com