すべてのプラットフォームでアクション バーをサポートするために、 ActionBarSherlockを使用しています。それは巨大なカスタム スタイリングの機会を提供します。青のセパレーターを緑のセパレーターに変更しました。ここに私のxmlがあります:
AndroidManifest.xml
<application android:theme="@style/Theme.GreenAB"></application>
/res/values/abs_green_style.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.GreenAB" parent="Theme.Sherlock.ForceOverflow">
<item name="actionBarStyle">@style/Widget.MyTheme.ActionBar</item>
<item name="android:actionBarStyle">@style/Widget.MyTheme.ActionBar</item>
</style>
<style name="Widget.MyTheme.ActionBar" parent="Widget.Sherlock.ActionBar">
<item name="android:background">@drawable/green_style</item>
<item name="background">@drawable/green_style</item>
</style>
</resources>
/res/drawable/green_style.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Green Bottom Line -->
<item>
<shape android:shape="rectangle">
<solid android:color="#FF177506" />
</shape>
</item>
<!-- Color of the action bar -->
<item android:bottom="2dip">
<shape android:shape="rectangle">
<solid android:color="#000000" />
</shape>
</item>
</layer-list>
すべてのプラットフォームでのサポートが必要ない場合は、サードパーティ ライブラリなしでこれを使用することもできます。親テーマ (Theme.Sherlock.ForceOverflow) を Android リソースに置き換え、スタイル セクションで重複するアイテム エントリを削除します。