造型的Actionbarsherlock标签(Styling the Actionbarsherlo

2019-07-29 02:35发布

所以,我想我的风格动作条,我已经使用ActionBarSherlock库中实现的标签。 这是我的代码:

<style name="Theme.AndroidDevelopers" parent="Theme.Sherlock.Light.ForceOverflow">
                <item name="actionBarTabStyle">@style/CustomActionBarStyle</item>
                <item name="android:actionBarTabStyle">@style/CustomActionBarStyle</item>

            <style name="CustomActionBarStyle" parent="Widget.Sherlock.Light.ActionBar.TabBar">
                <item name="android:background">@drawable/actionbar_tab_bg</item>
            </style>

在二,三线,如果我改变actionBarTabStyle到actionBarStyle,我的动作条本身改变我想要的风格(不是很顺利着,当然),这样的连接做的工作。 然而,试图改变动作条选项卡(下方),有还是没有成功。

我希望有人能帮助我。

带着敬意,

Answer 1:

下面应该工作

<style name="Theme.app" parent="@style/Theme.Sherlock.Light">
        <item name="android:actionBarTabBarStyle">@style/Theme.app.tabbar.style</item>
        <item name="actionBarTabBarStyle">@style/Widget.app.ActionBar.TabBar</item>
</style>

<style name="Theme.app.tabbar.style" parent="@style/Theme.Sherlock.Light">
    <item name="android:background">#FF0000</item>
    <item name="background">#FF0000</item>
</style>

<style name="Widget.app.ActionBar.TabBar" parent="Widget.Sherlock.ActionBar.TabBar">
    <item name="android:background">#FF0000</item>
    <item name="background">#FF0000</item>
</style>

这使得使用TabBar红色。

您需要设置actionBarTabBarStyle两次。 这是因为,Android的> 3.0和Android <3.0的



Answer 2:

在你CustomActionBarStyle你需要有

<item name="android:background">@drawable/actionbar_tab_bg</item>
<item name="background">@drawable/actionbar_tab_bg</item>

希望这可以帮助 :)



Answer 3:

因此,我不得不与造型有些困难,因为有一定的方式,我发现代码首先添加的标签。 感谢您的答复,他们所有的工作。



文章来源: Styling the Actionbarsherlock tabs