Thanks for the reply. Imagine that over 75% of the scrollable area was covered by these hotspots - I need the ACTION_DOWN to return true so that the click event does fire when the finger goes up (on that same child view), but *also* pass the event to the scrolling container's onTouchEvent - so it's not really a question of either/or, but rather do both. The catch-22 here seems to be that if I return true, the event is consumed, and therefore not passed to the container. If I return false, the event is not consumed, so the container does scroll, but when the finger goes up no event fires.
In looking at the source you linked, it looks like they're intercepting ACTION_DOWN only if it's currently flinging, so I'm not sure how they get it to work... -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

