スコアボードのテキストの色を金色に設定しようとしています。以下を試しましたが、うまくいきません。エラーは発生しませんが、色は変更されていません。理由はありますか?
これは、スコアボードの色を金色に設定する color.xml です。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="gold">
<item name="android:textColor">#e6b121</item>
</style>
</resources>
このようにscoreboard.xmlで使用します
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="@drawable/backgroundsb"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@+id/listViewscores"
style="@style/gold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
</ListView>
<Button
android:id="@+id/opnieuw"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Opnieuw spelen" />
</RelativeLayout>