我想像这样自定义我的标签
即选定的选项卡将具有白色背景,而未选定的选项卡将具有绿色背景。
到现在为止我能够实现
为了实现这一点,我正在做以下作为我的风格:-
<resources>
<style name="ActionBar" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@color/sa_green</item>
<item name="android:backgroundStacked">@color/stacked_green</item>
<item name="android:backgroundSplit">@color/sa_green</item>
</style>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>
</resources>
颜色.xml
<resources>
<color name="sa_green">#14a804</color>
<color name="stacked_green">#118504</color>
<color name="accent_green">#97e08f</color>
</resources>
如何去除蓝色指示器并根据选择的选项卡更改背景?