【发布时间】:2023-10-08 14:26:01
【问题描述】:
我想更改标题栏的颜色。我试过这个:
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:actionBarStyle">@style/ColorBar</item>
</style>
<style name="ColorBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@color/white</item>
<item name="android:textColor">@color/orange</item>
</style>
但它不起作用。我上面显示的代码有什么问题?
编辑:这是我要更改的文本的颜色,而不是背景(它正在为背景运行)
【问题讨论】:
-
我不能在 xml 中做到这一点?在每个活动中都这样做是没用的:(