Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 312
Qadir Hussain Avatar asked Dec 31 '25 02:12

Qadir Hussain


1 Answers

You should handle this by the viewpager

ViewPager viewpager= (ViewPager)findViewById(R.id.viewpager);
viewpager.setCurrentItem(YOUR DESIRED INDEX);
like image 141
sadegh saati Avatar answered Jan 02 '26 19:01

sadegh saati