I’m trying to implement a drag-drop functionality for pre-honeycomb devices. I’d like to touch an item in one frame layout, drag it over another frame layout, and have the second frame see the ACTION_UP event. Unfortunately haven’t found a way to do that, it seems only the view hierarchy that saw the original ACTION_DOWN gets notified of the ACTION_UP.
I’ve got the drag part working, but when I release my finger, the view underneath the ACTION_UP gets no notification at all. Is there any way to workaround this?
I ended up working around this by intercepting all of the events in the frame view with
onInterceptTouchEvent