When I use this code to replace the usual B4A touch event handler ...
... the motionevent value returned to pnlOne_Touch reports only DOWN events. This does not seem right. How can I get the other touch events?
B4X:
Dim rf As Reflector
rf.Target = pnlOne
rf.SetOnTouchListener("pnlOne_Touch")
. . .
. . .
Sub pnlOne_Touch (viewtag As Object, action As Int, X As Float, Y As Float, motionevent As Object) As Boolean
... the motionevent value returned to pnlOne_Touch reports only DOWN events. This does not seem right. How can I get the other touch events?