I\'m trying to display a map in a set of tabs, using fragments. The problem I\'m having is the map activity disappears if the user navigates to another fragment, then back. How
If you used ViewPager in your project, call setOffscreenPageLimit() for it like shown below :
ViewPager
setOffscreenPageLimit()
this.mViewPager.setOffscreenPageLimit(fragments.size());
where fragments is the Vector of fragments you've created