主题中有几种样式会影响操作栏中的选项卡。要设置选项卡的样式,您必须在主题中设置以下样式:(android:)actionBarTabBarStyle
和(android:)actionBarTabStyle
((android:)actionBarTabTextStyle
括号表示所有版本 - 本机操作栏ActionBarSherlock
和ActionBarCompat
)。
(android:)actionBarTabBarStyle
影响整个标签栏。标签栏可以是“堆叠的操作栏”(主操作栏下方的整个栏)或主操作栏的一部分(横向)。使用该样式,您可以更改所有选项卡后面的背景(所有选项卡一起使用一个背景)。
(android:)actionBarTabStyle
影响单个选项卡。如果要更改蓝线,则必须在样式中设置背景。默认背景是一个颜色状态列表,它定义了所有状态的背景(选定状态的蓝线)。
(android:)actionBarTabTextStyle
影响单个选项卡中的标题。您可以更改标题的大小、颜色和其他属性。
您的主题应包含以下内容:
<style name="AppTheme" parent="@style/Theme.Sherlock.Light">
<item name="android:actionBarTabBarStyle">@style/MyActionBarTabBarStyle</item>
<item name="actionBarTabBarStyle">@style/MyActionBarTabBarStyle</item>
<item name="android:actionBarTabStyle">@style/MyActionBarTabStyle</item>
<item name="actionBarTabStyle">@style/MyActionBarTabStyle</item>
<item name="android:actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>
<item name="actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>
</style>
样式应该是这样的:
<style name="MyActionBarTabBarStyle" parent="@style/Widget.Sherlock.Light.ActionBar.TabBar">
<item name="android:background">@drawable/tab_bar_background</item>
</style>
<style name="MyActionBarTabStyle" parent="@style/Widget.Sherlock.Light.ActionBar.TabView">
<!-- to change the blue line, change the background here -->
<item name="android:background">@drawable/tab_background</item>
</style>
<style name="MyActionBarTabTextStyle" parent="@style/Widget.Sherlock.Light.ActionBar.TabText">
<!-- change text attributes here -->
</style>