-
-
Save skydoves/6b77db7bf275587124870bff5dea05d0 to your computer and use it in GitHub Desktop.
tab_layout_listener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tabLayout.addOnTabSelectedListener(object : TabLayout.OnTabSelectedListener { | |
override fun onTabSelected(tab: TabLayout.Tab?) { | |
// Handle tab select | |
} | |
override fun onTabReselected(tab: TabLayout.Tab?) { | |
// Handle tab reselect | |
} | |
override fun onTabUnselected(tab: TabLayout.Tab?) { | |
// Handle tab unselect | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment