Android - 更改底部按钮栏的文本颜色
Android - Change text colour of the bottom button bar
我正在修改下载(适用于 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>
是的,您可以很容易地完成此操作,只需像这样覆盖 styles.xml 中的主题:
<style name="MyButtonStyle"
parent="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge">
<item name="android:textColor">@android:color/white</item>
</style>
有关详细信息,请参阅 documentation。
我正在修改下载(适用于 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>
是的,您可以很容易地完成此操作,只需像这样覆盖 styles.xml 中的主题:
<style name="MyButtonStyle"
parent="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge">
<item name="android:textColor">@android:color/white</item>
</style>
有关详细信息,请参阅 documentation。