Is it possible to make the infowindow of a marker not clickable? I was able to make the Marker not clickable or make the infowindow dissapear with a click
OnInfoWindowClickListener InfoWindowListener = new OnInfoWindowClickListener(){
@Override
public void onInfoWindowClick(Marker marker) {
marker.hideInfoWindow();
}};
but none of them is really what I want. I can image that creating a custom Infowindow can be the solution, but I'm wondering if there is a faster/easier way to achieve this.