android AlertDialog 错误 OnClickListener 报错

 写dialog一直报错

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

builder.setPositiveButton("Don't Remind", new OnClickListener()

改成

builder.setPositiveButton("Don't Remind", new DialogInterface.OnClickListener()