Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  • Add menu to all activities;
  • When user select item in menu, close(pop/hide) current activity and start (push/show) activity, which is related to selected item.

Any ideas to implement such behavior?

share|improve this question
with good OO programming you can use fragments in 1 activity, without messing the code up – user1281750 Jan 12 at 16:26
Is it true without fragments? – Maxim Korobov Jan 12 at 18:08

1 Answer

up vote 0 down vote accepted

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.

share|improve this answer
Hm... Fragments were intrudoced in api level 11 (Android 3.0.x). I am looking for solution, which will be fully compatible with Android 2.3, and maybe earlier versions. What about Intent's flag - thanks! Seems like with combinations of some flags it's possible to reach desirable behavior. – Maxim Korobov Jan 12 at 17:06
Android 1.6 or later can use fragments by using the compability library. it works well with slidingMenu mentioned above – user1281750 Jan 13 at 0:47
1  
what about I have an activity with viewpager (some fragments in the viewpager), how can i attach the activity with one item of the sliding menu? it looks impossible to transform this kind of activity to fragment as we can not use nested fragments at lest before API17. – virsir Apr 3 at 15:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.