Azim Ansari
Azim Ansari

Reputation: 1378

how to implement horizontally scrolling tabs using latest design library of android?

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.

See Android Blog Tab section

It says " ...as well as scrollable tabs... "

So how?

Upvotes: 0

Views: 699

Answers (1)

Konstantin Kiriushyn
Konstantin Kiriushyn

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

Related Questions