Reputation: 335
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
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
Reputation: 1015
Please check: http://developer.android.com/training/implementing-navigation/lateral.html#swipe-tabs
Upvotes: 0