Click Event on InfoWindow at Osmdroid Marker

Viewed 19

I am using Osmdroid to display marker at a map

GeoPoint position = new GeoPoint( latitude ,  longitude  ) ;
Marker marker = new Marker(map);
marker.setTitle("some title);
marker.setAnchor(Marker.ANCHOR_CENTER, Marker.ANCHOR_BOTTOM);
marker.setPosition(position);
map.getOverlays().add(marker);

When the user clicks at the marker, the Info Window appears and displays the title. How can I get the event, when the user clicks at the text (some title) of the Info Window? I cannot see something like

infoWindow.onClick( ..... )

or something similar.

Regards

Michael

1 Answers
Related