ImageView出错,该如何处理

ImageView出错
<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/icon"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" 
  android:adjustViewBounds="true"
  android:src="@drawable/jm"

   
</ImageView>


Failed to convert @drawable/jm into a drawable
Couldn't resolve resource @drawable/jm
Exception details are logged in Window > Show View > Error Log

------解决方案--------------------
<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
//应该问题出在这里
android:id="@+id/icon"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:src="@drawable/jm"
</ImageView>
------解决方案--------------------
很明显jm没有
1.检查项目里有没有jm图片。
2.检查R.java有没有jm字段,没有的话,删除gen目录,重新生成。
------解决方案--------------------
删除R.java,重新生成一次