Hey Roland, yeah I did try doing super(ev) as the code above:
@Override
public boolean dispatchTouchEvent(MotionEvent ev){
dispatchTouchEvent.super(ev);
mGestureDetector.onTouchEvent(ev);
return true;
}
This would allow me to scroll down but definitely messes things up. I
think there are too many touch event listeners that overwrite
eachother giving a shaking effect on scrolling. I tried different
things to solve this issue in my case with my menubar layout and it
just seems that any listeners on the clickable area will give this
effect. I tried many ways but as of now no luck.
I think the next thing I will try would be to disable all button
listeners on a gesture event and after the gesture re-enable them? If
this doesn't work I'm out of ideas.
Any input on this?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---