gpt4 book ai didi

android - 替代 setButton

转载 作者:IT老高 更新时间:2023-10-28 21:53:16 26 4
gpt4 key购买 nike

我在我的 android 项目中使用此代码:

alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});

但是,Eclipse 说 setButton() 已被弃用。请帮助我提供替代解决方案。谢谢!

最佳答案

AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setTitle("ALERTTILESTRING")
.setMessage("alertNameString")
.setCancelable(false)
.setNegativeButton("Close",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
}

我希望上面的代码是一个很好的代码,其中对话框工作得很好

关于android - 替代 setButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13268302/

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