0

我在 Visual Studio 2010 中使用 Mono for Android。

资源/值/Colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <color name="Red">#FF0000</color>
</resources>

主要.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:layout_margin="10dp">
 <TextView
    android:text="High Priority Calls"
    android:textColor="@color/red"
    android:textSize="18sp"
    android:padding="10dp"
    android:layout_margin="10dp" />
 <ListView
    android:id="@+id/urgentCalls"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="8dp"
    android:layout_margin="8dp" />
</LinearLayout>

构建错误:未找到与给定名称匹配的资源(在“textColor”处,值为“@color/red”)。

我已经盯着这个看了一段时间,我只是没有看到我的错误。

4

1 回答 1

4

更新您的 Colors.xml 文件以使用小写:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <color name="red">#FF0000</color>
</resources>
于 2012-06-25T17:18:08.460 回答