我的 main.xml 文件中有一个 imageView,最初没有使用源设置。我希望能够在代码中动态更改图像资源。所以让我有这样的imageView设置:
<ImageView
android:id="@+id/countryImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/CountryImageContent"/>
所以我尝试像这样在我的代码中访问:
ImageView img = (ImageView) findViewById(R.id.countryImage);
问题就在这里。Eclipse 给我一个错误,说“countryImage 无法解析或不是字段”。快速查看我的 R.java 文件显示 imageView 实际上并不存在。为什么会这样?谢谢。