Pheonix7
Pheonix7

Reputation: 2201

Slide Menu with Navigation Drawer + Tabs + ListViews

I would like to have a UI like google play store, which has a slide menu + tabs + listviews.

I need to make an e-commerce app that opens to a menu using navigation drawer. The entries of the menu need to have different type of fragments like Fragment, ListFragment. i'll try to explain better.

Suppose i click on the "Home" menu entry of the menu then i need to open a page(Fragment?) that has 2 tabs (buy - sell). must they be ListViews or ListFragments?. once i select an entry of the list then i get a detail page.

How do i manage all this? Im guessing that there is some imcompatability with navigation drawer tabs and ListView/ListFragment?

Please tell me hoes this is all done or show me a sample ot tutorial? thanks

Upvotes: 0

Views: 4585

Answers (1)

user2511882
user2511882

Reputation: 9152

The two tabs you are talking about should be listviews. And what you are asking for is implementing viewpager and navigation drawer in the same layout, which is possible but seems very odd to have the both of them in the same place if you ask me.

Links:

http://www.javacodegeeks.com/2013/04/android-tutorial-using-the-viewpager.html http://www.androidhive.info/2013/11/android-sliding-menu-using-navigation-drawer/ http://developer.android.com/training/implementing-navigation/nav-drawer.html

Upvotes: 1

Related Questions