astuetz / PagerSlidingTabStrip

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

Get view of Tabs #209

Closed hadifar closed 9 years ago

hadifar commented 9 years ago

Hi @astuetz Thanks for your well written lib :) I have a question is it possiable to getView of each tabs ? ( I want to pass it to showCaseView to show some hint )

hadifar commented 9 years ago

I fix it ! In pagerSlidingTabStrip I add following function and solve my problem :)

public View getCurrentTabView(){ return tabsContainer.getChildAt(currentPosition); }