I want to add some proper navigation to my app. I have two fragments and I want to make a title strip tabs (similar to the one in Play Newsstand or the Play Store with material design) that switches between the two fragments. I don't have a very good understanding of the ViewPager
or PagerAdapter
. I'm also trying to use this library. I don't know where to get started. Thanks in advance.
How to implement sliding tab navigation with multiple fragments
9.7k Views Asked by wasimsandhu At
2
I actually did something myself for once. Okay.
First, add the library to your dependencies in the build.gradle file.
This is what my activity_main.xml looks like. I added the
PagerSlidingTabStrip
(with my own customization, see the Github repo for more) and myViewPager
from the support library.Next, I did the following steps in the
onCreate()
method of my MainActivity.java:And finally, the
FragmentPagerAdapter
class, also in MainActivity.java. Notice theFragment getItem()
method; this is where I switched between my fragments using the position of the tabs.