androidactionbarsherlocknavigation-drawerpagerslidingtabstrip

How to switch tab to specified position in PagerSlidingTabStrip


I want the app structure like Sliding drawer menu + Tabs like in Google Play store app.

I searched and got the one on GitHub the awesome PagerSlidingTabStrip.

I have somehow customized this project. Project is working nice.

Now it looks like

enter image description here enter image description here

I want to switch the tabs when I click on sliding drawer menu list items. Like if I click on Home the tab should switched to Home, or if Click on AV sections from the menu it should switch the tab to AV sections.


Solution

  • You should handle this by the viewpager

    ViewPager viewpager= (ViewPager)findViewById(R.id.viewpager);
    viewpager.setCurrentItem(YOUR DESIRED INDEX);