Veniamin Vynohradov
Veniamin Vynohradov
Closes https://github.com/material-components/material-components-android/issues/4105 Usage example: ```java TabLayout tabLayout = ...; Tab firstTab = tabLayout.newTab() .setText("Tab 1") .setOnTabClickListener((tab) -> { if (!isSomeCheckValid) { // Show some error dialog. return; } tab.select(); });...
**Description:** I have a business logic in the app to perform a certain validation when the TabView is clicked. Due to the current TabLayout implementation, I can't prevent tab selection...