我想为整个应用程序设置一个特定的样式。
我在androidmanifest.xml中添加了样式,我将样式定义如下:
<style name="myStyle">
<item name="android:background">#000000</item>
<item name="android:textColor">#FFFFFF</item>
</style>
这个样式改变了整个应用程序的背景和文本颜色,虽然我想改变按钮的文本颜色:这句话在定义按钮时起作用,但我想将它添加到应用程序的样式中
非常感谢
答案 0 :(得分:0)
<style name="myStyle" parent="android:Theme">
<item name="android:buttonStyle">@style/Your button style</item>
</style>
源:How do I apply a style to all buttons of an Android application