我在一个标签中有一个活动,“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>
为什么文字是等宽的,按照要求,但不是紫色?
答案 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"/>