Как применить цвет текста ко всему в Деятельности? - PullRequest
0 голосов
/ 05 марта 2012

У меня есть активность, "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 Ответ

1 голос
/ 05 марта 2012

Возможно, вам потребуется добавить стиль к каждому атрибуту radioButton.

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