在定义了一个类去实现OnClickListener接口的时候无法复写public void onClick(View v)方法,而是只能复写public void onClick(DialogInterface arg0, int arg1) 方法。
主要的原因就是导包的时候发生了错误,解决途径也很简单,只需要删除

import android.content.DialogInterface.OnClickListener;

然后重新导入

import android.view.View.OnClickListener;
Last modification:September 22, 2017
If you think my article is useful to you, please feel free to appreciate