so I am aware of a few workarounds to get the facebook slide menu on my android app which can be through either:
1- FrameLayouts (http://stackoverflow.com/a/8673805/1010114)
2- screenshots (http://stackoverflow.com/a/9768498/1010114)
However, what I want to do, and so far clueless on how to achieve, is to have the facebook slide menu in a MapActivity. This way, user can see and interact with the MapView and has the ability to press the menu button to look at the menu (when the menu appears, it's fine if the user can't interact with the visible part of the map)
Using option number 2 (screenshots) did not work because it seems I can't not take screen shots of a mapview (or at least I can't using his way)
Any hints/ideas on how to do that ?
I had the same issue and solved it by adding a TabHost on the Activity. You can set the MapActivity as the tab content and hide the button for it.
Example code:
map.xml:
main.xml:
MyMapActivity.java:
MyActivity.java:
I hope this solves your problem.