Search code examples
androidandroid-actionbarandroid-scrollview

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:


Solution

  • 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.