也可以在<11的API中更改Actionbar的行为
请参阅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,因此,仅对API <11设置样式的操作栏xml
是唯一的方式