PagerSlidingTabStrip icon indicating copy to clipboard operation
PagerSlidingTabStrip copied to clipboard

Tab settextcolor() is not working

Open vydyapuneethkumar opened this issue 7 years ago • 1 comments

tabsStrip.setTextColor(R.color.green); is not working please check

vydyapuneethkumar avatar Dec 04 '17 05:12 vydyapuneethkumar

you're making the call wrong. R.color.green is an id, not a color resource. use getContext().getResources().getColor(R.color.green)

Crysis21 avatar Dec 07 '17 12:12 Crysis21