Change Color TabSelector on v4 ViewPager

android, android-custom-view, android-tabs, android-viewpager

Solution

This is the tab indicator. You can change its color by applying different styles.

Use Action Bar Style Generator, generate 9patch png files (tab_selected, tab_selected_focused etc.) and add these files + styles to your project.

Another approach -> How to change the current tab highlighter color in Android ViewPager? (as @Pratik wrote in comment).

Problem

Is it possible to change color of selected tab on v4 ViewPager? I need to use v4 ViewPager, but I don't find any source to customize it. Just to clarify I need to change the blue color to another one:

Original source

Related problems