そのようにしてください:
<style name="CustomStyle" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/CustomActionBar</item>
</style>
<style name="CustomActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@drawable/ANY_DRAWABLE</item>
<item name="android:displayOptions">useLogo|showHome</item>
...
<item name="PARAM">VALUE</item>
</style>
CustomActionBar スタイルでは、ActionBar パラメータを設定できます。アクティビティで CustomStyle を使用します。
更新: すべてのアプリケーションのマニフェストで CustomStyle を使用できます。早くやれよ :
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomStyle">
または各アクティビティに使用します:
<activity
android:name="MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/CustomStyle">
幸運を!