The situation is that I have an activity with two fragments inside, now that I add another fragment with MapView. It works fine, when I press the button (triggers getFragmentManager().popBackStack();), it goes back to the previous page.
However, when I try to re-enter the MapView fragment, there would be an error and the application closes itself.
Here are the code. Thank you so much if anybody could help a bit on this!!!!
For the activity code:
public class MainActivity extends MapActivity {
.......
......
......
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}}
For the MapView fragment code:
public class GPS extends Fragment implements OnClickListener {
private MapView mapView;
private GeoPoint point;
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle saved) {
View c = inflater.inflate(R.layout.gps, container, false);
// ///////////////////MAPS
mapView = (MapView) c.findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
point = new GeoPoint((int) (22.336980 * 1000000),
(int) (114.145476 * 1000000));
mapView.getController().animateTo(point);
mapView.getController().setZoom(17);
// get google map layer
List<Overlay> mapOverlays = mapView.getOverlays();
// apply marker/ pin down the location
Drawable icon_marker = this.getResources().getDrawable(
R.drawable.pinmap);
// use this pin for every layer
MapPin markerOverlay = new MapPin(icon_marker, getActivity());
OverlayItem overlayitem = new OverlayItem(point, "Hello!",
"Please come and visit us!");
// add pin to the layer
markerOverlay.addOverlay(overlayitem);
// add the layer to the google map
mapOverlays.add(markerOverlay);
// ////////////////////BUTTONS
Button back = (Button) c.findViewById(R.id.button1);
back.setOnClickListener(this);
return c;
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
SlidingMenu main = (SlidingMenu) getActivity();
switch (v.getId()) {
case R.id.button1:
getFragmentManager().popBackStack();
break;
}
}
}