max59
max59

Reputation: 606

Best way to show fragments in tabs?

I'm writing an app in which each tab must display a different ListFragment view. I've finished working on the ListFragment and it works without any issues. Now, I would like to display them using tabs so that any ListFragment can be accessed by selecting it's respective tab. What's the best way to do this?

Upvotes: 0

Views: 310

Answers (1)

An-droid
An-droid

Reputation: 6485

A good way is to use ActionBarSherlock + ViewPager :

http://www.androidbegin.com/tutorial/android-actionbarsherlock-viewpager-tabs-tutorial/

Upvotes: 2

Related Questions