よし、Androidチュートリアルに従ってアクションバーのスタイルを試してみましたが、うまくいかないようです
themes.xml
<resources>
<!-- the theme applied to the application or activity -->
<style
name="CustomActionBarTheme"
parent="@style/Theme.AppCompat.Light.DarkActionBar">
<!-- Support library compatibility -->
<item name="actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style
name="MyActionBar"
parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<!-- Support library compatibility -->
<item name="background">@drawable/actionbar_background</item>
</style>
</resources>
マニフェスト.xml
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomActionBarTheme" >
...
正しいフォルダーに actionbar_background.png (基本的に色付きの正方形の画像) があることを確認しました。でも。アップを実行すると、何も変わっていないように見える古いアクション バーがまだ表示されます。