Created
February 4, 2015 08:19
-
-
Save hangox/216295ed66fd6c5b8631 to your computer and use it in GitHub Desktop.
分享一个radiobutton作为tab的style,最重要的死后paddingleft = 0
这一句,解决了有些机子上会出现偏右的情况
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="tab"> | |
| <item name="android:layout_height">wrap_content</item> | |
| <item name="android:layout_width">0dp</item> | |
| <item name="android:layout_weight">1</item> | |
| <item name="android:textSize">14sp</item> | |
| <item name="android:button">@null</item> | |
| <item name="android:textColor">@color/tab_text_color</item> | |
| <item name="android:gravity">center_horizontal</item> | |
| <item name="android:paddingLeft">0dp</item> | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment