0

Visual Studio 2010 で Mono for Android を使用しています。

リソース/値/Colors.xml

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

Main.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 に答える