这样做:
<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。
更新: 您可以在 Manifest 中为所有应用程序使用 CustomStyle。去做就对了 :
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomStyle">
或用于每个 Activity :
<activity
android:name="MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/CustomStyle">
祝你好运!