Button setonclicklistener error

前端 未结 6 1961
感情败类
感情败类 2020-12-31 23:43

I am having a problem right now with setOnClickListener.

When i put this following line:

button.setOnClickListener(this);
6条回答
  •  一个人的身影
    2021-01-01 00:25

    another possible reason ( happened to me ) is your activity must implement OnClickListener

    public class MainActivity extends Activity implements OnClickListener ...
    

提交回复
热议问题