Javatpoint Logo
Javatpoint Logo

Kotlin Android TabLayout with FrameLayout

Android TabLayout is a Layout which is used to build horizontal tabs. In the tutorial, Android TabLayout with ViewPager we create the tabs of TabLayout using the newTab() method but the tabs are also be implemented using android.support.design.widget.TabItem in layout activity.

The title and icon of tabs are provided by implementing the text and icon attribute respectively.

To provide the space for each tab of TabLayout, we can use the FrameLayout. FrameLayout is designed to cover the area on the screen to display a single item.

Kotlin Android TabLayout with FrameLayout Example

In this example, we will create the TabLayout using TabItem with FrameLayout.

build.gradle

Add the following dependency in the build.gradle file.

activity_main.xml

Add the TabLayout, TabItem, and FrameLayout in the activity_main.xml layout file.

strings.xml

colors.xml

MainActivity.kt

Add the following code in MainActivity.kt class. In this class, we create the instance of TabLayout and FrameLayout. Calling the addOnTabSelectedListener() listener of TabLayout and overrides its methods.

Create the FrameLayout for each fragment as New -> Fragment -> Fragment (Blank).

fragment_java.xml

MainActivity.kt

fragment_android.xml

AndroidFragment.kt

fragment_kotlin.xml

KotlinFragment.kt

fragment_php.xml

PhpFragment.kt

fragment_python.xml

PythonFragment.kt

Output:

Kotlin Android TabLayout with FrameLayout Kotlin Android TabLayout with FrameLayout
Kotlin Android TabLayout with FrameLayout Kotlin Android TabLayout with FrameLayout
Kotlin Android TabLayout with FrameLayout Kotlin Android TabLayout with FrameLayout
Next Topic#





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA