gpt4 book ai didi

Android AlertDialog 单按钮

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

我想要一个 AlertDialog 构建器,它只有一个按钮,显示 OK 或 Done 或其他内容,而不是默认的 yes 和 no。可以使用标准的 AlertDialog 来完成,还是我必须使用其他东西?

最佳答案

难道不能只使用一个肯定按钮来完成吗?

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Look at this dialog!")
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//do things
}
});
AlertDialog alert = builder.create();
alert.show();

关于Android AlertDialog 单按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5810084/

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