Last active
August 29, 2015 14:17
-
-
Save dzwillpower/63cbb2cf5932131fd90d to your computer and use it in GitHub Desktop.
theme and style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<attr name="oppoPagerTabStripStyle" format="reference" /> | |
<declare-styleable name="OppoPagerTabStrip"> | |
<attr name="pagerTitle" format="reference" /> | |
<attr name="pagerTitleSize" format="reference|dimension" /> | |
<attr name="pagerTitleColor" format="reference|color" /> | |
<attr name="pagerTitleColorHighlight" format="reference|color" /> | |
<attr name="textPadding" format="reference|dimension" /> | |
<attr name="bottomLine" format="reference|color" /> | |
<attr name="focusLine" format="reference|color" /> | |
<attr name="focusLineWidth" format="reference|dimension" /> | |
</declare-styleable> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources> | |
<dimen name="oppo_pager_title_text_size">12dip</dimen> | |
<dimen name="oppo_pager_focus_line_width">78dip</dimen> | |
<dimen name="oppo_pager_text_width_two_count">100dip</dimen> | |
<dimen name="oppo_pager_text_width_three_count">78dip</dimen> | |
<dimen name="oppo_pager_horizontal_padding">10dip</dimen> | |
<dimen name="oppo_pager_title_height">34dip</dimen> | |
</resources> | |
values-hdpi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style name="Widget.OPPO.OppoPagerTabStrip"> | |
<item name="android:background">@drawable/oppo_pager_title_bg</item> | |
<item name="pagerTitleSize">@dimen/oppo_pager_title_text_size</item> | |
<item name="pagerTitleColor">@color/oppo_pager_title_text_color</item> | |
<item name="pagerTitleColorHighlight">@color/oppo_pager_title_highligth_text_color</item> | |
<item name="textPadding">0dip</item> | |
<item name="bottomLine">@drawable/oppo_pager_title_line</item> | |
<item name="focusLine">@drawable/oppo_pager_title_line_selected</item> | |
<item name="focusLineWidth">@dimen/oppo_pager_focus_line_width</item> | |
<item name="android:paddingLeft">@dimen/oppo_pager_horizontal_padding</item> | |
<item name="android:paddingRight">@dimen/oppo_pager_horizontal_padding</item> | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<item name="oppoPagerTabStripStyle">@style/Widget.OPPO.OppoPagerTabStrip</item> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment