I am implementing google maps in my application. My requirement is to display custom infoWindow when click on marker.
My custom infoWindow contains a listview and i need to perform some operation based on clicked item.
i am getting click event of whole infoWindow (using OnInfoWindowClickListener) but the problem is, i am not getting click event for list view inside infoWindow.
As per description here
Note: The info window that is drawn is not a live view. The view is rendered as an image (using View.draw(Canvas)) at the time it is returned. This means that any subsequent changes to the view will not be reflected by the info window on the map. To update the info window later (for example, after an image has loaded), call showInfoWindow(). Furthermore, the info window will not respect any of the interactivity typical for a normal view such as touch or gesture events. However you can listen to a generic click event on the whole info window as described in the section below.
So is there any way by which i can get click event of each clicked item inside custom infoWindow ?