Skip to content
Yet another android tab layout
Kotlin
Branch: master
Clone or download

Latest commit

Latest commit 7b53e20 Sep 26, 2019

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.idea migrating to androidX Sep 26, 2019
app migrating to androidX Sep 26, 2019
art remove big gif May 4, 2018
gradle/wrapper initial Apr 29, 2018
library migrating to androidX Sep 26, 2019
.DS_Store initial Apr 29, 2018
.gitignore initial Apr 29, 2018
README.md Update README.md May 4, 2018
build.gradle initial Apr 29, 2018
gradle.properties initial Apr 29, 2018
gradlew initial Apr 29, 2018
gradlew.bat initial Apr 29, 2018
settings.gradle initial Apr 29, 2018

README.md

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/ic_star_white_24dp"/>

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

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

    <tab
        inactiveColor="@color/colorGray"
        activeColor="@color/colorPurple"
        drawable="@drawable/ic_account_circle_white_24dp"/>
</tabs>
  • Add tabs
<com.iammert.library.AnimatedTabLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        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.
You can’t perform that action at this time.