我正在尝试更改ActionBar的颜色。
如果我使用此代码:
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo.Light">
<!-- Customize your theme here. -->
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#BA0000</item>
</style>
它有效(几毫秒我可以看到红色)但崩溃并抛出此错误:You need to use a Theme.AppCompat theme (or descendant) with this activity.
如果我使用此代码:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#BA0000</item>
</style>
它不会崩溃但也不会改变颜色。