我正在尝试为我的记分牌设置我的文字颜色。我尝试了以下但它不起作用。我没有得到任何错误,但颜色没有改变。有什么想法吗?
这是我的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>
答案 0 :(得分:0)
<?xml version="1.0" encoding="utf-8"?><resources><color name="white">#FFFFFF</color><color name="black">#000000</color><color name="green">#008000</color><color name="blue">#0000FF</color> <color name="red">#FF0000</color> <color name="gray">#858585</color></resources
在values文件夹中使用color.xml保存xml文件 并将其用于文本视图“android:textColor =”@ color / blue“