Reputation: 1378
I want to implement material design scrolling tabs using latest design library.
As android developer blog says that it can be implemented with design library.
It says " ...as well as scrollable tabs... "
So how?
Upvotes: 0
Views: 699
Reputation: 627
Here is what you need!
private void setUpTabs() {
TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);
}
Upvotes: 2