I have an app that is extending ActionBarActivity and is using google maps as fragment. I obtain the map like this:
SupportMapFragment fm = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
mMap = fm.getMap();
So my question is, how to add another fragment and how to switch between them ? I've been googling and searching for solution but found nothing yet.