ImageView cannot be resolved to a type
问题: ImageView cannot be resolved to a type
报这样的错误是没有加载MainActivity.java文件中加入
import android.widget.ImageView;
为了避免类似错语,可以这样的写
import android.widget.*;
这样的写的好处是以后遇到类似EditText,TextView等都可以解决。
问题: ImageView cannot be resolved to a type
报这样的错误是没有加载MainActivity.java文件中加入
import android.widget.ImageView;
为了避免类似错语,可以这样的写
import android.widget.*;
这样的写的好处是以后遇到类似EditText,TextView等都可以解决。