Android Question Make Vertical Swipe Event handled by Scrollview, Horizontal Swipe Event handled by Panel below it?

hillzx

Member
Licensed User
Longtime User
I have 1 panel that handling horizontal swipe (left to right / right to left) , then i'm adding 1 scrollview(vertical) on top of that panel, after that panel horizontal handler won't working , i want both vertical and horizontal working, anyone know about this ?? thank you


I have tried
Dim r AsReflector
r.Target = myScrollview
r.RunMethod2("requestDisallowInterceptTouchEvent", True, "java.lang.boolean")

but it's still not working
 
Last edited:
Top