2

I'd like to implement a navigation with two layers of tabs, similar to this one:

Double tab navigation

However I cannot find how to give scrollable tabs this appearance: centered title for the active tab, and the others pushed to the sides, without separator or underlining. I'm pretty sure I've seen this scrollable tabs style before, so I was wondering if it's just a setting or maybe a third party library.

Could anyone help me with this ?

Thank you.

Jukurrpa
  • 4,038
  • 7
  • 43
  • 73

1 Answers1

2

Have a look at ViewPager's PagerTitleStrip. That's what you are looking for.

FD_
  • 12,947
  • 4
  • 35
  • 62
  • Great, thanks! I'll actually use [PagerTabStrip](http://developer.android.com/reference/android/support/v4/view/PagerTabStrip.html) as I need the interactivity. – Jukurrpa Feb 20 '14 at 15:31