Hello!
I need to use a transparent panel and pass the touch event under this panel.
For this reason I use reflector with:
Logging the Action parameter, I see only 0 = ACTION_DOWN.
I additionally need to use the other 2 actions of the built-in touch event, ACTION_MOVE and ACTION_UP but they don't fire with reflector.
GestureDetector has exactly the same behaviour.
Is there any other approach to have a similar functionality?
Thank you in advance!
I need to use a transparent panel and pass the touch event under this panel.
For this reason I use reflector with:
B4X:
Private r As Reflector
r.Target = pnlTouch
r.SetOnTouchListener("pnlTouch_MyTouch")
I additionally need to use the other 2 actions of the built-in touch event, ACTION_MOVE and ACTION_UP but they don't fire with reflector.
GestureDetector has exactly the same behaviour.
Is there any other approach to have a similar functionality?
Thank you in advance!