我正在修改下载(对于4.3 Jellybean),我无法将底部按钮上的文本颜色从黑色更改为白色。是否可以通过在应用主题中添加项目来更改文本颜色而不给按钮自己的样式?这是我的Styles.xml:
<style name="DownloadListTheme" parent="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge">
<item name="android:textAlignment">viewStart</item>
<item name="android:layoutDirection">locale</item>
<item name="android:actionBarStyle">@android:style/Widget.DeviceDefault.Light.ActionBar.Solid.Inverse</item>
<item name="com.sonyericsson.uxp:extendedLookAndFeel">true</item>
<item name="android:textColor">@android:color/white</item>
</style>
答案 0 :(得分:0)
是的,您可以非常轻松地完成此任务,只需在styles.xml中覆盖您的主题,如下所示:
<style name="MyButtonStyle"
parent="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge">
<item name="android:textColor">@android:color/white</item>
</style>
有关详细信息,请参阅documentation。