Actionbarの動作は、API <11でも変更できます
参考のためにAndroidの公式ドキュメントを参照してください
私が使用してアプリケーションを構築していますminSdkVersion = "9"
し、targetSdkVersion = "21"
私はアクションバーの色を変更し、それがAPIレベルで正常に動作します9
ここにXMLがあります
res/values/themes.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<!-- Support library compatibility -->
<item name="actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar"
parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background">@color/actionbar_background</item>
<!-- Support library compatibility -->
<item name="background">@color/actionbar_background</item>
</style>
</resources>
必要なアクションバーの色を設定します
res/values/colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="actionbar_background">#fff</color> //write the color you want here
</resources>
アクションバーの色も.class
ファイルで定義できます。スニペットは
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#0000ff")));
しかし、これは動作しませんとAPI <11は、そうでアクションバーをスタイリングすることはxml
API <11のための唯一の方法です