android – 自定义ActionBar TabBar(ActionBarSherlock)

android – 自定义ActionBar TabBar(ActionBarSherlock),第1张

概述我已经坚持了几天这个问题了.任何人都可以帮我自定义ActionBar下面显示的选项卡(NavigationMode是NAVIGATION_MODE_TABS)? 我基本上想要更改选项卡的背景颜色和当前所选选项卡的下划线颜色.到目前为止,这是我所做的,但它不起作用.我正在使用ActionBarSherlock. <style name="Theme.Styled" parent="@style/Th 我已经坚持了几天这个问题了.任何人都可以帮我自定义Actionbar下面显示的选项卡(NavigationMode是NAVIGATION_MODE_TABS)?

我基本上想要更改选项卡的背景颜色和当前所选选项卡的下划线颜色.到目前为止,这是我所做的,但它不起作用.我正在使用ActionbarSherlock.

<style name="theme.Styled" parent="@style/theme.Sherlock.light">    <item name="actionbarStyle">@style/Widget.theme.Styled.Actionbar</item>    <item name="androID:actionbarStyle">@style/Widget.theme.Styled.Actionbar</item>    <item name="actionbarTabbarStyle">@style/customActionbarTabStyle</item>    <item name="androID:actionbarTabbarStyle">@style/customActionbarTabStyle</item>    <item name="actionbarTabbarStyle">@style/customActionbarTabbarStyle</item>    <item name="androID:actionbarTabbarStyle">@style/customActionbarTabbarStyle</item>    <item name="actionbarTabTextStyle">@style/customActionbarTabTextStyle</item>    <item name="androID:actionbarTabTextStyle">@style/customActionbarTabTextStyle</item></style><style name="customActionbarTabStyle" parent="style/Widget.Sherlock.light.Actionbar.TabVIEw">    <item name="androID:background">@color/red</item>    <item name="androID:textSize">12dp</item></style><style name="customActionbarTabbarStyle" parent="style/Widget.Sherlock.light.Actionbar.Tabbar">    <item name="androID:background">@color/red</item></style><style name="customActionbarTabTextStyle" parent="style/Widget.Sherlock.light.Actionbar.TabText">    <item name="androID:TitleTextStyle">@style/theme.Styled.Actionbar.TitleTextStyle</item>    <item name="androID:textStyle">bold</item></style><style name="Widget.theme.Styled.Actionbar" parent="Widget.Sherlock.Actionbar">    <item name="androID:background">#A9E2F3</item>    <item name="background">#A9E2F3</item>    <item name="androID:TitleTextStyle">@style/theme.Styled.Actionbar.TitleTextStyle</item></style><style name="theme.Styled.Actionbar.TitleTextStyle" parent="androID:style/TextAppearance.Holo.Widget.Actionbar.Title">    <item name="androID:textcolor">@color/red</item>    <item name="androID:textStyle">bold</item></style><style name="Animations" />
解决方法 我不确定你是否还需要这个,但我会将答案发给其他人看.您可以在customActionbarTabStyle的后台Drawable中将其设置为Drawable资源:
<style name="customActionbarTabStyle" parent="style/Widget.Sherlock.light.Actionbar.TabVIEw">    <item name="androID:background">@drawable/actionbar_tabs_selector</item>    <item name="androID:textSize">12dp</item></style>

资源应该是一个选择器,在这些行中:

<!-- This is the "@drawable/actionbar_tabs_selector" layout !--><?xml version="1.0" enCoding="utf-8"?><selector xmlns:androID="http://schemas.androID.com/apk/res/androID" >    <item androID:state_focused="false" androID:state_selected="false" androID:state_pressed="false" androID:drawable="@drawable/actionbar_tab_style_nselected"/>    <item androID:state_focused="false" androID:state_selected="true" androID:state_pressed="false" androID:drawable="@drawable/actionbar_tab_style_selected"/>    <!-- pressed state -->    <item androID:state_pressed="true" androID:drawable="@drawable/actionbar_tab_style_selected" />    <!-- Focused state -->    <item androID:state_focused="true" androID:state_selected="false" androID:state_pressed="false" androID:drawable="@drawable/actionbar_tab_style_nselected"/>    <item androID:state_focused="true" androID:state_selected="true" androID:state_pressed="false" androID:drawable="@drawable/actionbar_tab_style_nselected"/></selector>

所以这里的资源是2层列表.一个用于选项卡处于非活动状态,一个用于选项卡处于活动状态时.因此,您可以根据所选状态设置2个图层列表.

单个图层列表可能如下所示:

<!-- This is the "@drawable/actionbar_tab_style_nselected" layout !--><?xml version="1.0" enCoding="utf-8"?><@R_797_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID">    <!-- Bottom line -->    <item>        <shape androID:shape="rectangle">            <solID androID:color="@color/HCL_orange" />        </shape>    </item>    <!-- Tab color -->    <item androID:bottom="2dip">        <shape androID:shape="rectangle">            <solID androID:color="@androID:color/white" />        </shape>    </item></@R_797_3419@>

因此,第一项是底线,您可以将其定义为当前所选Tab的下划线颜色,第二项是整个选项卡的颜色.

总结

以上是内存溢出为你收集整理的android – 自定义ActionBar TabBar(ActionBarSherlock)全部内容,希望文章能够帮你解决android – 自定义ActionBar TabBar(ActionBarSherlock)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1134609.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存