Spread events on several levels.

I am developing a Google Maps application for Android version 1.6.

My problem is that in my application I have more than one layer that extends from ItemizedOverlay representing the information on the map.

The problem is that all layers implement the onTap method, but now only the last layer (at the top of the stack) detects a tap event, so if the user clicks on an element located in a deeper element, the onTap method never fires.

Is there a way to extend the event to deeper layers?

+2
android google-maps android-mapview
source share
1 answer

Fixed with Android 2.0, this was a known issue with some phones, including mine (MyTouch3G)

+1
source share

All Articles