1 つのアクティビティと 1 つのレイアウト アプリケーションがあります。ActionBarSherlock を実装していますが、テーマがエミュレーター/初期のデバイスに適用されません。
私のtheme.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActivityTheme" parent="Theme.Sherlock">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<!-- other activity and action bar styles here -->
</style>
<!-- style for the action bar backgrounds -->
<style name="MyActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid.Inverse">
<item name="android:backgroundSplit">#4200ff</item>
<item name="android:backgroundStacked">#4200ff</item>
<item name="android:background">#4200ff</item>
</style>
</resources>
これにより、JellyBean デバイスの ActionBar が青色に変わりますが、2.2 エミュレーターでは黒色のままです。
これが私のmanifest.xmlの一部です:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomActivityTheme">