10 个小时以来,我一直在尝试向我的应用程序添加一个 alertdialog,但没有成功,我认为这将是一个愚蠢的问题,但我对此很陌生,试图研究许多链接,如AlertDialog - Not Working;SDK Android AlertDialog.Builder,但即便如此我仍然有问题。
实际上,我每次都遇到基本相同的问题:
这是我从链接中复制的代码来帮助我:
public void dbFail(){
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Reset...");
alertDialog.setMessage("Are you sure?");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// here you can add functions
}
});
alertDialog.show();
}
和这里的问题:
构造函数 AlertDialog.Builder(ConnectDB¹) 未定义。
¹- 这是我的上下文的名称
那么,我真正需要做什么?我没有看到有人在谈论实现这个构造函数......我是否需要在 AlertDialog.Builder 调用中实现一个方法,描述他应该做什么?