Eylem Çubuğunun Davranışı API'larda da değiştirilebilir <11
Android Resmi Belgelerine bakınReferans
Bir uygulama oluşturuyorum minSdkVersion = "9"
ve targetSdkVersion = "21"
işlem çubuğunun rengini değiştirdim ve API seviye 9 ile iyi çalışıyor
İşte bir 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>
ve istediğiniz işlem çubuğunun rengini ayarlayın
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>
İşlem çubuğu rengi .class
dosyada da tanımlanabilir , snippet
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#0000ff")));
ancak bu , API <11 ile çalışmaz , bu nedenle eylem çubuğunu biçimlendirmek API <11 için yalnızca yoldurxml