我正在使用 Sherlock 库在 Actionbar 上工作。我想以不同的方式更改操作栏和选项卡的背景图像。目前我已经在运行时通过代码成功更改了操作栏的背景:
Drawable myIcon = getResources().getDrawable(R.drawable.blue_menu_background);
mActionBar.setBackgroundDrawable(myIcon);
但是我遇到了标签背景的问题。如何更改选项卡的背景。请给我建议。
我正在使用 Sherlock 库在 Actionbar 上工作。我想以不同的方式更改操作栏和选项卡的背景图像。目前我已经在运行时通过代码成功更改了操作栏的背景:
Drawable myIcon = getResources().getDrawable(R.drawable.blue_menu_background);
mActionBar.setBackgroundDrawable(myIcon);
但是我遇到了标签背景的问题。如何更改选项卡的背景。请给我建议。
您可以使用以下代码:
actionBar.setStackedBackgroundDrawable(new ColorDrawable(yourColor)); // for example new ColorDrawable(Color.BLUE)
除了这样做,您可以使用 Style for Tabs:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActivityTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarTabTextStyle">@style/CustomTabTextStyle</item>
<item name="android:actionBarDivider">@drawable/ab_divider</item>
<item name="android:actionBarItemBackground">@drawable/ab_item_background</item>
</style>
<!-- style for the action bar tab text -->
<style name="CustomTabTextStyle" parent="@android:style/TextAppearance.Holo">
<item name="android:textColor">#2456c2</item>
</style>
</resources>
查看这篇文章了解更多详情。
要更改操作栏选项卡的颜色,请使用以下代码:
//例如如果你想要白色作为标签背景,那么
getActionBar().setStackedBackgroundDrawable(new ColorDrawable(Color.parseColor("#FFFFFF")));