# AnimatedTabLayout **Repository Path**: mirrors_iammert/AnimatedTabLayout ## Basic Information - **Project Name**: AnimatedTabLayout - **Description**: Yet another android tab layout - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-01-11 - **Last Updated**: 2025-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AnimatedTabLayout Yet another tab layout. # GIF # Motivation Thanks to [Igor](https://dribbble.com/motionigor) for sharing this awesome animation. I motivated myself to create android library. [Check out the concept](https://www.uplabs.com/posts/phone-app-animation-asus-zenui-6-0-concept) # Setup * Create your tabs file under res/xml/ folder. ```html ``` * Add tabs ```xml ``` * Setup with viewpager or listen change on tab click. ```kotlin atl.setupViewPager(viewpager) atl.setTabChangeListener(object : AnimatedTabLayout.OnChangeListener { override fun onChanged(position: Int) { } }) ``` # Dependency ```gradle 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.