This post builds on the previous post for ABS + VPI.

I have gotten a lot of questions on styling the ABS, specifically the tab selected indicators. This task may seem daunting, but in reality it is relatively simple. I am also quite confused why I didn’t find any straightforward tutorials when I tried googling this. Anyway, this post will hopefully help developers who aim to style their action bars.

We will need to use Jeff Gilfelt’s awesome styling tool. To use it, just input in your app’s color scheme for the highlights and what-not then download the generated zip file. If you want to just change the tab underline color, change the value under “Accent color”. To make the change obvious from the default settings, I have used a shade of orange for the tab selected indicators. Here are the settings I used for this demo.

Jeff’s tool conveniently generates all the XML files and drawables and organizes them into the correct /res/drawable folders. Unzip the file and just drag the generated files into your project, or merge the contents if you already have such existing files.

See how easy it was? Seriously, we should all lie prostrate at Jeff Gilfelt’s and Jake Wharton’s feet. These guys are AWESOME.

The two photos below show the difference between the old app and the styled app. As you can see, I only changed the tab selected color. You can explore what happens if you use the other styles you can get from Jeff’s tool.

Default Styled

The hard work is done, let’s now try to understand the automagically generated configurations we did.

First, we have to configure the theme to use custom tab indicators. We do this by changing the tab styles in themes.xml. In my sample app, these lines customize the tabs we are using.

<!-- Styling the tabs -->
<style name="CustomTabPageIndicator" parent="Widget.TabPageIndicator">
    <!-- Tab text -->   
    <item name="android:textSize">15dip</item>
    <item name="android:textColor">#FFB33E3E</item>
    
    <!--  Lines under tabs -->
    <item name="background">@drawable/tab_indicator_ab_styling_abs</item>  
    <item name="android:background">@drawable/tab_indicator_ab_styling_abs</item>
</style>

The “drawable” tab_indicator_ab_styling_abs is actually a state list drawable that provides different images for each state of a tab – focused and non-focused, pressed and not pressed.

You can see part of this in action in the image above. Try long pressing on a tab and you can see the tab’s background change to use the unselected-pressed drawable.

Again, HUGE thanks to Jeff Gilfelt and Jake Wharton for creating tools that make our lives easier. :)

I have pushed a new branch in github that uses this style. The master branch of that repo still uses the default tab selectors.