connexion20000
connexion20000

Reputation: 335

Scrolling tabs instead of fixed tabs in ActionBar

Is it possible to make tabs in ActionBar look like scrolling tabs, e.g.:

Because all I can get are fixed tabs like:

Upvotes: 0

Views: 8606

Answers (2)

Guykun
Guykun

Reputation: 2779

What you're trying to achieve are not scrolling tabs, but a ViewPager. You won't be able to get the look you want using only tabs.

Take a look at the good tutorial here on the ViewPager: http://android-developers.blogspot.co.uk/2011/08/horizontal-view-swiping-with-viewpager.html

The best way to implement this is to use Fragments, and the library ViewPageIndicator for the top list of pages.

Upvotes: 1

Related Questions