The method setOnClickListener(View.OnClickListener) in the type View is not applicable for the arguments (Activity_02Activity.MyButtonListener) java
當出現這個錯誤時是由於倒錯包了!查看.java文件的頭部可知,導入的是import android.content.DialogInterface.OnClickListener;其實咱們要的包是import android.view.View.OnClickListener;將其view這個包替換content的包便可解決! android