Today we’re going to see how to add animated Tab Layout in Android but this is a unique Zen UI 6.0 layout.
We’ve discussed already about animated tab layout library and you can see below:





Let’s move on to this awesome Library
1Demo
2Application Demo

3Download this project
4Include this library in project
allprojects { repositories { ... maven { url 'https://jitpack.io' } } } dependencies { implementation 'com.github.iammert:AnimatedTabLayout:0.1' }
5Create Tab in Resource XML
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>
6Add animated tab layout in UI
Add tabs
<com.iammert.library.AnimatedTabLayout android:layout_width="match_parent" android:layout_height="wrap_content" app:atl_tabs="@xml/tabs"/>
Share your thoughts