我无法使用预定义的样式设置Button的文本颜色。我一定很遗憾。例如,我有一个按钮:
<Button
android:id="@+id/calculate_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/calculate"
android:background="@drawable/rounded_bottom_shape"
android:padding="5dp"
android:textAppearance="@style/CalcResultStyle">
</Button>
相应的风格是:
<style name="CalcResultStyle">
<item name="android:textSize">12sp</item>
<item name="android:textColor">#FFF</item>
</style>
尺寸部分工作正常,但颜色没有。我找到的唯一解决方法是在实际按钮上设置textColor,这意味着更改多个按钮上的颜色会变得很麻烦。我也喜欢在我的样式中使用颜色引用(例如@ color / Brown)设置textColor属性,但是使用引用或显式设置颜色似乎没有区别。
答案 0 :(得分:14)
我用这个。也许它会帮助你。你能告诉我你在rounded_bottom_shape写的是什么吗?
<Button
android:id="@+id/calculate_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Calculate"
android:background="#454545"
android:padding="5dp"
style="@style/CalcResultStyle">
</Button>