您的位置:首页 > 移动开发 > Android开发

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

2017-11-08 10:36 716 查看
http://blog.csdn.net/xiaoyuan511/article/details/17114761


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

原创 2013年12月04日
10:43:35

标签:
android /
Dialog /
报错

1284

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()
[/code]

It should be
.setNegativeButton("Don't Remind", new DialogInterface.OnClickListener()
只要这样写,就不报错了!本人水平有限,也不知道什么原因,希望对你能有帮助!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐