Android Google map v2 w zakładce Nakładające się wydanie, Wiele map w zakładce

Jestem nowy na Androida, teraz pracuję z Google Maps v2, użyłem tabhost do pokazania mapy Google v2, W tym tabhost muszę pokazać dwie mapy Google v2 na innej karcie. Kiedy przełączam kartę b / w dwie karty zawierające mapę, nakładają się na siebie. Nie wiem, jak rozwiązać ten problem.

// kod jest tutaj dla obu kart

    mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
            .getMap();
    mMap.setMyLocationEnabled(true);

    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    //locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MIN_TIME, MIN_DISTANCE, this);
    Log.e("locamanager",""+locationManager);
    Criteria criteria=new Criteria(); // object to retrieve provider
    String provider = locationManager.getBestProvider(criteria, true);
    Location location=locationManager.getLastKnownLocation(provider);
    if(location!=null){
        onLocationChanged(location);
    }
    locationManager.requestLocationUpdates(provider, 400, 1000, this);


 }


@Override
public void onLocationChanged(Location location) {

    latLng = new LatLng(location.getLatitude(), location.getLongitude());
    Log.e("latlng",""+latLng);
    cameraUpdate = CameraUpdateFactory.newLatLngZoom(latLng, 15);
    mMap.animateCamera(cameraUpdate);
    locationManager.removeUpdates(this);

    new ReverseGeocodingTask(getBaseContext()).execute(latLng);

}

Każdy ma rozwiązanie, proszę mi pomóc

Dzięki na Advance

questionAnswers(3)

yourAnswerToTheQuestion