У меня есть активность, "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.](https://i.stack.imgur.com/a21eo.png)