Skip to content Skip to sidebar Skip to footer

Android Tab Icon Color Is Not Clear

I am trying to do color selector, when tab selected his color will be white, and when unselected - other color. For this goal I use setColorFilter. But tab icon color is not clear

Solution 1:

Use SlidingTabLayout

siliding_tabs.setCustomTabColorizer(new SlidingTabLayout.TabColorizer() {
    @Override
    public int getIndicatorColor(int position) {
        return getResources().getColor(R.color.white);
    }               
});

Post a Comment for "Android Tab Icon Color Is Not Clear"