I want to put my ItemizedOverlayWithBubble by OSMdroid on top of the marker, because now it's on the marker and when it shows my marker hides behind the bubble, because it's the same GeoPoint. What is the correct way?
final ArrayList<ExtendedOverlayItem> items = new ArrayList<ExtendedOverlayItem>();
ExtendedOverlayItem a = new ExtendedOverlayItem("Hannover", "SampleDescription", new GeoPoint(42.34105549, -3.69639444), this);
items.add(0, a);
ItemizedOverlayWithBubble<ExtendedOverlayItem> mMyLocationOverlay =
new ItemizedOverlayWithBubble<ExtendedOverlayItem>
(this, items, mapView);
mapView.getOverlays().add(mMyLocationOverlay);
Thanks a lot
If someone want to know the solution, this is the solution