我在我的代碼中收到此錯誤:爲什麼我的res文件中的顏色不被識別?
錯誤:找不到與給定名稱匹配的資源(在'background'處,值爲@ color/red')。
這裏是我的TextView:
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/prizeFund"
android:background="@color/red">
</TextView>
而且顏色定義,在colors.xml在res /值:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#ff0000</color>
<color name="green">#00ff00</color>
<color name="blue">#0000ff</color>
</resources>
有你,因爲添加的文件中運行「乾淨」的下面爲例未colors.xml
?有時需要清理才能刷新所有資源。 – MikeIsrael