如何将文本颜色应用于活动中的所有内容?

时间:2012-03-05 14:43:11

标签: android widget styles

我在一个标签中有一个活动,“Eeee”,在AndroidManifest.xml中声明如下:

    <activity android:name="Eeee"
        android:label="@string/app_name"
        android:theme="@style/eeee"
    />

样式声明如下:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <style name="eeee">
            <item name="android:typeface">monospace</item>
            <item name="android:textColor">#ff00ff</item>
        </style>
    </resources>

为什么文字是等宽的,按照要求,但不是紫色?

And this is the result.

1 个答案:

答案 0 :(得分:1)

您可能需要将样式添加到每个radioButton属性。

<RadioButton
    android:id="@+id/option1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Option 1" 
    style="@style/eeee"/>