Maxim Korobov
Maxim Korobov

Reputation: 2572

Sliding menu with many activities

There are many implementations of facebook app-like sliding menu, which are mentioned in that question.

Some of them, which implementation I checked, are using one activity for showing menu and data. When user selects item from menu no new activity is start. Thus, one activity is using for many part of the program, showing different data in one view.

IMHO, it could be messy to use one activity for all. So, I'm thinking of new plan:

Any ideas to implement such behavior?

Upvotes: 3

Views: 4796

Answers (1)

Stefan de Bruijn
Stefan de Bruijn

Reputation: 6319

I'm way to lazy to read through all those answers in the mentioned thread and check all provided libraries.

A good sliding menu library which works properly with Fragments is SlidingMenu

Also you should take a look at the documentation on Activities, Intents (the flags you can set to them) and how their life cycles are managed cause you seem to mix up some things.

Upvotes: 1

Related Questions