colors.xml文件在eclipse中不起作用

时间:2012-04-13 11:54:22

标签: android xml eclipse

我试图在hello world app的res / values下运行colors.xml文件。

我将以下代码放在.xml中:

<resources>
    <color name="background_color">#00F</color>
    <color name="app_text_color">#FF00FF</color>
</resources>

然而,当我运行应用程序时,显示的字符串没有任何背景颜色或应用程序文本颜色。 我是否还必须以编程方式编写代码。

1 个答案:

答案 0 :(得分:2)

是的,您需要明确地将颜色应用于您的视图,或者如果您想要为整个应用更改这些设置,请创建自定义主题。

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/app_text_color"
        android:text="hallo" />