You should use this library:
[Lib] Gesture Detector
Hmmmm...I think there is the same problem with this library too...
Scenario: You have a transparent top panel, a BasePanelHost (which contains the BasePanel), BasePanel (which contains the pages (Panels) )
- You can catch the Down event on transparent top panel, and pass it to the BasePanelHost . (everything ok till now..)
- When a Move Action happens, it will not be detected because you have passed the events to BasePanelHost (returning False in the previous step)
If we don't Return False, in the Down action, then we cannot have events on the child views...
Have you ever get this to work with this library? Can u please give me an example?
I think that the only way is to catch the event BEFORE....that's why I asked for the onInterceptTouchEvent...