I\'m trying to figure out how best to do this, I have a map with one Polygon
drawn on it. Since it doesn\'t seem as though the Google Maps API V2 has a touch de
Just for consistency - onMapClick is not called when user taps on a polygon (or other overlay), and it's mentioned in javadoc.
I made a workaround to intercept taps events before MapFragment handles them, and project point to map coordinates and check if the point is inside any polygon, as suggested in other answer.
See more details here