// Hide the TabView void hideTabs() { tabs.removeAllTabs(); tabs.getLayoutParams().height = 0; }
// Show the TabView void showTabs() { tabs.getLayoutParams().height = TabLayout.LayoutParams.WRAP_CONTENT; }