关于android创建对话框报错The method setPositiveButton(int, DialogInterface.OnClickListener) in the type Alert

来源:互联网 发布:javascript常用对象 编辑:程序博客网 时间:2024/05/23 02:06

The method setPositiveButton(int, DialogInterface.OnClickListener) in the type AlertDialog.Builder is not applicable for the arguments (String, new   View.OnClickListener(){})


Here is your solution, you did a silly mistake there buddy.

It should not be

.setNegativeButton("Don't Remind", new OnClickListener() 

It should be

.setNegativeButton("Don't Remind", new DialogInterface.OnClickListener()
只要这样写,就不报错了!本人水平有限,也不知道什么原因,希望对你能有帮助!
原创粉丝点击