The method setOnClickListener(View.OnClickListener) in the type View is not applicable

来源:互联网 发布:求免费的数据恢复软件 编辑:程序博客网 时间:2024/06/05 17:39



开始学习 android 了,学习的是高明鑫老师的android视频教程(android视频教学)。 学到第八讲时, 在写动态设置时报错:

The method setOnClickListener(View.OnClickListener) in the type View is not applicable for the arguments (new OnClickListener(){})


解决方法:

增加一个导入

import android.view.View.OnClickListener; 

0 0