android - Cannot change active text color on TabLayout -
i trying style tabs in android.support.design.widget.tablayout can not selected tab color change, set textcolorprimary in app theme, need them different colors.
i have tried setting values in styles.xml applies tablayout, read can not change active tab text color way, though can change unselected tab text colors. have tried:
tablayout.settabtextcolors(getresources().getcolorstatelist(r.color.selector));
and
tablayout.settabtextcolors(r.color.green, r.color.blue);
is possible override selected tab text color?
edit: got working,
tablayout.settabtextcolors(getresources().getcolorstatelist(r.color.selector));
needed called before attached view pager
Comments
Post a Comment