cdcdcd

Create a Material Design Tabbed Interface in an Android App

Final product image
What You’ll Be Creating

The material design team at Google simply defines the functionality of tabs in Android as follows:

Tabs make it easy to explore and switch between different views.

In this post you’ll learn how to display tabs using the TabLayout and ViewPager API. In this practical tutorial, we’ll cover the following:

  • The TabLayout and ViewPager components. 
  • The different tab modes: scrollable and fixed.
  • How to display icons instead of text for the tab titles.
  • For a bonus, you’ll also learn how to use the Android Studio templates feature to quickly bootstrap your project with a tabbed interface. 

A sample project for this tutorial can be found on our GitHub repo so you can easily follow along.

Prerequisites

To be able to follow this tutorial, you’ll need:

  • Android Studio 3.0 or higher
  • Kotlin plugin 1.1.51 or higher

You can also learn all the ins and outs of the Kotlin language in my Kotlin From Scratch series.

  • Kotlin
    Kotlin From Scratch: Nullability, Loops, and Conditions
    Chike Mgbemena
  • Kotlin
    Kotlin From Scratch: Classes and Objects
    Chike Mgbemena

Introduction to the TabLayout Component

According to the official Android documentation on TabLayout, it says:

TabLayout provides a horizontal layout to display tabs.

The TabLayout component is one of the components introduced as part of the material design artifacts. Moreover, it is also included in the design support library. In a TabLayout, when a tab is selected or tapped, a different page (or fragment) is shown to the user. 

The TabLayout component can have its displayed tabs function in one of two ways: fixed and scrollable. If the tabs are fixed, all of the tabs will be displayed on the screen at the same time.  

The screenshot below is the latest official WhatsApp Android app (as of this writing), which uses a TabLayout with a fixed mode configuration. 

WhatsApp fixed TabLayout sample

In scrollable tabs, if the number of tabs becomes too wide for the screen, the user can swipe left or right to view more tabs. 

Here is an example of a TabLayout with scrollable tab mode—showcased in the latest version of the News & Weather Android app by Google. 

Scrollable tab mode in Google News  Weather app

Furthermore, the information displayed on a tab can be text, an icon, or a combination of both text and an icon. For example, the latest Twitter app for Android uses icons instead of text on each tab. 

Icons on tabs in Twitter Android app

In the following sections, we’ll dive into coding a simple app that makes use of TabLayout with a ViewPager. Let’s get rolling! 

Design is not just what it looks like and feels like. Design is how it works. — Steve Jobs

1. Create an Android Studio Project

Fire up Android Studio 3 and create a new project (you can name it TabLayoutDemo) with an empty activity called MainActivity.

Create Android Project page

2. Creating the Fragments (Pages)

We’re going to create a TabLayout with just three tabs. When each of the tabs is selected, it displays a different Android fragment or page. So let’s now create the three Android fragments for each of the tabs. We’ll start with the first fragment class, and you should follow a similar process for the remaining two fragment classes—FragmentTwo.kt and FragmentThree.kt

Here is my FragmentOne.kt:

Here is also my R.layout.fragment_one

3. Adding the TabLayout and ViewPager

To begin using TabLayout and ViewPager in your project, make sure you import the design support and also the Android support artifact—so add these to your module’s build.gradle file to import them. 

Also, visit your res/layout/activlty_main.xml file to include both the TabLayout widget and the ViewPager view. 

Here we created a simple TabLayout with id tab_layout. In our TabLayout XML widget, you can see that we included some attributes—such as app:tabMode to be fixed and also app:tabGravity to be fill. The app:tabGravity property is used to configure how the tab items will be displayed so as to take up the available space. We set this to fill, which will distribute the items evenly across the width of the TabLayout. Note that this will be more visible in wider displays, such as tablets. 

I also included a custom style attribute (@style/CustomTabLayout) in our TabLayout widget. 

We begin customising our TabLayout by setting the values of the attributes to be applied on the TabLayout. Here are the details for some of the attributes applied:

  • tabIndicatorColor: sets the tab indicator’s color for the currently selected tab. This can also be set programmatically by calling setSelectedTabIndicatorColor() on a TabLayout instance. 
  • tabIndicatorHeight: sets the tab indicator’s height for the currently selected tab. This can be also be set programmatically by calling the setSelectedTabIndicatorHeight() on a TabLayout instance. 
  • tabSelectedTextColor: sets the text colors for the different states (normal, selected) used for the tabs. The equivalent of this attribute in Java is setTabTextColors()

Immediately after creating our TabLayout widget in XML, the next view was a ViewPager. The official documentation says the following about ViewPager:

Layout manager that allows the user to flip left and right through pages of data…

4. Creating the PagerAdapter

We need to create a subclass in SampleAdapter.kt that extends the FragmentPagerAdapter. This class is responsible for managing the different fragments that will be displayed on the tabs. 

Here we override three methods from the parent class: getItem()getCount(), and getPageTitle(). Here are the explanations for the methods:

  • getItem(): returns a Fragment for a particular position within the ViewPager
  • getCount(): indicates how many pages will be in the ViewPager
  • getPageTitle(): this method is called by the ViewPager to obtain a title string to describe the specified tab.

For example, if the selected tab is the first tab with title "Tab 1 Item", a FragmentOne page will be shown to the user immediately. 

5. Initialization of Components

Next, we are going to initialize instances of our TabLayout, ViewPager, and SampleAdapter. Initialization is going to happen inside onCreate() in MainActivity.kt.

We got references to our TabLayout and ViewPager from R.layout.activity_main and initialized them. We also created an instance of our SampleAdapter—passing an instance of FragmentManager as an argument. We need to supply the views for our ViewPager, so we called setAdapter() and passed in our created adapter to it. Finally, we called setupWithViewPager() on an instance of TabLayout to do some work:

  • creation of the required tab for every page
  • setting up the required listeners

When the user taps on a tab, it changes the pages in the ViewPager and shows the required page (or Fragment). Also, swiping between pages updates the selected tab. In other words, this method helps us take care of scroll state change and clicks on the tabs.

The onTabSelectedListener() is used to include a listener that will be invoked when tab selection changes. We’ve overridden the following callbacks:

  • onTabSelected(): triggered when a tab enters the selected state.
  • onTabUnselected(): invoked when a tab exits the selected state.
  • onTabReselected(): invoked when a tab that is already selected is chosen again by the user.

Note that we can also set the tab mode programmatically—instead of via the layout XML—using setTabMode() on an instance of TabLayout. We pass the mode (fixed or scrollable) to this method as arguments. For example, we can pass TabLayout.MODE_FIXED for a fixed mode—or TabLayout.MODE_SCROLLABLE for a scrollable mode.

Note that if you want to explicitly create the tabs instead of using the helper method setUpWithViewPager(), you can instead use newTab() on a TabLayout instance. 

Note also that we could explicitly create the tabs via XML instead of programmatically. 

6. Testing the App

Finally, you can run the app! 

Final demo app

Try interacting with the application by swiping left or right and tapping the tabs. 

7. Scrollable Tabs

The official material design guidelines on tabs says the following about scrollable tabs:

Scrollable tabs display a subset of tabs at any given moment. They can contain longer tab labels and a larger number of tabs than fixed tabs. Scrollable tabs are best used for browsing contexts in touch interfaces when users don’t need to directly compare the tab labels.

Let’s see how to create tabs with scrollable mode configuration. I made the title for each of the tabs longer than before. Here is the result in fixed mode:

Longer tab title in TabLayout

You can see that TabLayout has used multiple lines to display each of the tab’s titles. In some situations, it will even truncate the titles! This creates a bad user experience, so if your tab titles need to be very long, you should consider using scrollable mode. Note also that if you are going to have more than four tabs, it’s recommended to make the tab mode scrollable.

Let’s change the app:tabMode property from fixed to scrollable.

Remember, you can also set the tab mode programmatically, as discussed earlier. 

Scrollable mode for tabs

8. Showing Tab Icons

Let’s now dive into how to replace the tab item text with icons instead. 

Here we called the getTabAt() on an instance of TabLayout. Calling this method will return the tab at the specified index. Next, we call setIcon(). Calling this method will set the icon displayed on this tab. 

I also set the tab mode to be fixed.

I still override the getPageTitle() inside the SampleAdapter

Here is the result:

App demo with tab icons and titles

Now, if you want only the icons, you simply don’t override getPageTitle().

App demo with tab icons

9. Bonus: Using Android Studio Templates

Instead of writing so much code just to create a tabbed interface or activity from scratch, Android Studio 3.0 has some pre-existing code templates (available in Java and Kotlin) to help kick-start your project. One such template can be used to create a tabbed activity. 

I’ll show you how to use this handy feature in Android Studio 3. 

For a new project, fire up Android Studio 3. 

Android Studio create project dialog

Enter the application name and click the Next button. 

You can leave the defaults as they are in the Target Android Devices dialog. Click the Next button again. 

Add an Activity to Mobile dialog

In the Add an Activity to Mobile dialog, scroll down and select Tabbed Activity. Click the Next button after that. 

Configure Activity dialog

In the last dialog, scroll down to the Navigation Style drop-down menu and select Action Bar Tabs (with ViewPager). Finally, click the Finish button to accept all configurations. 

Android Studio has now helped us to create a project with a tabbed activity. Really cool!

Android Studio XML design view for layout

You are strongly advised to explore the code generated. 

In an already existing Android Studio project, to use this template, simply go to File > Activity > Tabbed Activity. And follow the similar steps that were described previously. 

Navigation to tabbed activity button in Android Studio

The templates that come included with Android Studio are good for simple layouts and making basic apps, but if you want to kick-start your app even further, you might consider some of the app templates available from Envato Market. 

They’re a huge time saver for experienced developers, helping them to cut through the slog of creating an app from scratch and focus their talents instead on the unique and customised parts of creating a new app.

  • App Templates
    15 Best Android App Templates of 2017
    Nona Blackman

Conclusion

In this tutorial, you learned how to create a tabbed interface in Android using the TabLayout and ViewPager API from scratch. We also explored how to easily and quickly use the Android Studio templates to create a tabbed interface. 

I highly recommend checking out the official material design guidelines for tabs to learn more about how to properly design and use tabs in Android.   

To learn more about coding for Android, check out some of our other courses and tutorials here on Envato Tuts+!

  • Android SDK
    Create a Music Player App With Anko
    Ashraff Hathibelagal
  • Android SDK
    Build a Music App With an Android App Template
    Chike Mgbemena
  • Android SDK
    Implementing an Event Bus With LiveData
    Chike Mgbemena

Powered by WPeMatico

Leave a Comment

Scroll to Top