I have an Activity, “Eeee”, in a tab, declared like this in AndroidManifest.xml:
<activity android:name="Eeee"
android:label="@string/app_name"
android:theme="@style/eeee"
/>
The style is declared like this:
<?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>
Why is it that the text is monospace, as requested, but not purple?

You might need to add the style to each radioButton attribute.