iammert
AnimatedTabLayout
Kotlin

Yet another android tab layout

Last updated Jun 16, 2026
795
Stars
77
Forks
11
Issues
0
Stars/day
Attention Score
53
Language breakdown
No language data available.
โ–ธ Files click to expand
README

AnimatedTabLayout

Yet another tab layout.

GIF

Motivation

Thanks to Igor for sharing this awesome animation. I motivated myself to create android library.

Check out the concept

Setup

  • Create your tabs file under res/xml/ folder.
<?xml version="1.0" encoding="utf-8"?>
<tabs size="@dimen/size"
    space="@dimen/space">

<tab inactiveColor="@color/colorGray" activeColor="@color/colorOrange" drawable="@drawable/icstarwhite_24dp"/>

<tab inactiveColor="@color/colorGray" activeColor="@color/colorBlue" drawable="@drawable/icdialpadwhite_24dp"/>

<tab inactiveColor="@color/colorGray" activeColor="@color/colorRed" drawable="@drawable/icaccesstimewhite24dp"/>

<tab inactiveColor="@color/colorGray" activeColor="@color/colorPurple" drawable="@drawable/icaccountcirclewhite24dp"/> </tabs>

  • Add tabs
<com.iammert.library.AnimatedTabLayout
        android:layoutwidth="matchparent"
        android:layoutheight="wrapcontent"
        app:atl_tabs="@xml/tabs"/>
  • Setup with viewpager or listen change on tab click.
atl.setupViewPager(viewpager)
atl.setTabChangeListener(object : AnimatedTabLayout.OnChangeListener {
    override fun onChanged(position: Int) {
    }
})

Dependency

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

dependencies { implementation 'com.github.iammert:AnimatedTabLayout:0.1' }

TODO

  • [ ] Animated Vector Drawable on tab expand.
  • [ ] tabMode support(scrolling, fixed)
License

Copyright 2018 Mert ลžimลŸek.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

ยฉ 2026 GitRepoTrend ยท iammert/AnimatedTabLayout ยท Updated daily from GitHub