我无法使用预定义的样式设置按钮的文本颜色。我一定错过了一些简单的东西。例如,我有一个按钮:
<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属性,但是使用引用或显式地设置颜色似乎没有区别。
我使用这个。也许它会对你有帮助。你能告诉我你在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>