标签:
写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()
android AlertDialog 错误 OnClickListener 报错
标签:
原文地址:http://www.cnblogs.com/anarki1234/p/4602529.html