Start a Project

TabLayout using viewPager in Android

TabLayout

Tab layout are visible below toolbar with View pager, used to create swipeable views . Tabs are designed to work with fragments. Use them to swipe fragments in view pager. In this article, we are going to show you how to implement material design tabs in your android app.

Let us create an example of Tablayout using viewPager.

build.gradle 

 

File : activity_main.xml

File: MainActivity.java

In this file, we implement two additional listener addOnPageChangeListener(listener) of ViewPager which makes slides the different fragments of tabs and addOnTabSelectedListener(listener) of TabLayout which select the current tab on tab selection.

File :  TabLayoutAdapter.java

Now create different fragment files for all different tabs.

File : Tab1Fragment.java

File : fragment_tab1

 

Exit mobile version