I have MapView on my android application. I have a GoogleMapsActivity where I get coords to display on a map.
GeoPoint point = new GeoPoint((int) (lat * 1E6),(int) (lng * 1E6));
OverlayItem overlayitem = new OverlayItem(point, "title", "text");
itemizedoverlay.addOverlay(overlayitem);
mapOverlays.add(itemizedoverlay);
And, I have too a MapsItemizedOverlay activity, where I display this points. Basically I followed the MapView tutorial. Now I need to pass an int and string from GoogleMapsActivity to MapsItemizedOveraly, because when I tap on a mark I need to redirect to a URL.
I don't know if I explain, but in resume: I need to pass one string and one int from GoogleMapsActivity to MapsItemizedOverlay.
Thanks for your help.