astuetz / PagerSlidingTabStrip

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

badge numbers #48

Open kalvish21 opened 10 years ago

kalvish21 commented 10 years ago

anyway to add badge numbers to these tabs? Is that in the works? Trying to figure that out as we speak.

aadeel commented 9 years ago

Did you figure it out? I tried doing that but couldn't

ercanbaran commented 9 years ago

If "app:pstsShouldExpand="true"" in your xml or you set setShouldExpand as true it does not work.

Changing expandedLayoutParams in PagerSlidingTabStrip.java as the following solves the problem.

expandedTabLayoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1.0f);