Skip to content

Instantly share code, notes, and snippets.

@willwhitney
Created September 18, 2013 23:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willwhitney/6617164 to your computer and use it in GitHub Desktop.
Save willwhitney/6617164 to your computer and use it in GitHub Desktop.
android tab style
<style name="retroTabStyle" parent="@android:style/Widget.Holo.ActionBar.TabView">
<item name="android:showDividers">none</item>
<item name="android:measureWithLargestChild">true</item>
<item name="android:background">@drawable/tabs_background_selector</item>
<item name="android:gravity">center</item>
<item name="android:layout_weight">1</item>
</style>
<style name="retroTabBar" parent="@android:style/Widget.Holo.ActionBar.TabBar">
<item name="android:showDividers">middle</item>
<item name="android:divider">@drawable/red_rectangle</item>
<item name="android:dividerPadding">10dp</item>
<item name="android:background">@drawable/tabs_background</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment