我正在使用Sherlock库在Actionbar上工作。我想以不同方式更改操作栏和选项卡的背景图像。目前我已经在运行时通过代码成功更改了Actionbar的背景:
Drawable myIcon = getResources().getDrawable(R.drawable.blue_menu_background);
mActionBar.setBackgroundDrawable(myIcon);
但是我遇到Tab背景问题。如何更改选项卡的背景。请建议我。
答案 0 :(得分:9)
您可以使用此代码:
actionBar.setStackedBackgroundDrawable(new ColorDrawable(yourColor)); // for example new ColorDrawable(Color.BLUE)
答案 1 :(得分:2)
您可以使用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>
查看此article了解详情。
答案 2 :(得分:-1)
要更改操作栏选项卡的颜色,请使用以下代码:
//例如,如果您想将白色作为标签背景,那么
getActionBar().setStackedBackgroundDrawable(new ColorDrawable(Color.parseColor("#FFFFFF")));