error: cannot find symbol private ImageView ImageView;
时间: 2024-05-20 13:15:00 浏览: 148
CirCleImageView:XferMode 方式的圆形ImageView
这个错误通常是因为你的代码中定义了一个名为 "ImageView" 的变量或类,与 Android SDK 中的 ImageView 类重名导致的。解决方法是修改你的代码中的变量或类名,避免与 Android SDK 中的类重名。例如,将代码中的 "ImageView" 改为 "myImageView" 或其他不重复的名称。
阅读全文