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

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
  • 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() 

It should be

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

你可能感兴趣的:(Android)