I have a ViewPager with PagerTabStrip and three tabs,lets say "1","2","3" and the situation is this:
1*When first tab is selected,the visible selection is this:
1 2-the selector is under 1,tab 1 and tab 2 are visible
2*But when I select the second tab,the result is this :
1 2 3 -the selector is under 2,all tabs are visible(this is what i want)
3* When I have selected the third tab : 2 3 -the selector is under 3,tab 2 and 3 are visible
So I want when whichever tab is selected - all tabs to be visible(like 2*).So what is needed to do that?If you need the source code I could provide it,but it seems that this can be fixed with some property of the ViewPager or just to use another control?I just want to see all tabs and to choose from them,not to move from 1 to 2 and then to see 3...
So it seems that it can`t be solve this with setting the argument to zero : ViewPager.setOffscreenPageLimit(0) doesn't work as expected Any idea?