I have a MapView with 3 different ItemizedOverlays that act with a similar behavior. They all work alright, but they only respond to taps on the items, they do nothing if I tap the map. Setting a OnClickListener on the MapView has proven to be unresponsive. Is there any way of hiding the balloon when tapping outside of it without losing pinch to zoom?
Asked
Active
Viewed 404 times
1 Answers
1
Try to remove balloons in onTouchEvent
of ItemizedOverlay
as touch events work for each. Hope it helps.

Braj
- 2,164
- 2
- 26
- 44
-
Wow, it works! Have been trying it for over two days! Thank you very much :) – Charlie-Blake Aug 27 '12 at 12:14