astuetz / PagerSlidingTabStrip

An interactive indicator to navigate between the different pages of a ViewPager
139 stars 44 forks source link

Tab settextcolor() is not working #319

Open vydyapuneethkumar opened 6 years ago

vydyapuneethkumar commented 6 years ago

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

Crysis21 commented 6 years ago

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