アプリケーションのテーマを変更しようとしています。アプリの背景色とアクション バーの背景色を正常に設定できました。
残念ながら、アクション バー内の項目の背景色は、アクション バーの背景色ではなく、アプリの背景色を使用しています。
これがstyles.xmlの私のコードです
<!--
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:background">#ff0000</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#fefefe</item>
</style>
これが何が起こっているかのスクリーンショットです。
ここで愚かな何かが欠けていることを願っています...
ありがとう!