B4J Question B4J native touch actions constants: where ?

peacemaker

Expert
Licensed User
Longtime User
Hi, All

Where to call them from ? I need the native constants references. Pane objects have no them.
(Native is needed due to B4XView has no mouse cursor icon control)

Update:

B4X:
Dim a2 As B4XView
    Log("TOUCH_ACTION_DOWN = " & a2.TOUCH_ACTION_DOWN)
    Log("TOUCH_ACTION_MOVE = " & a2.TOUCH_ACTION_MOVE)
    Log("TOUCH_ACTION_UP = " & a2.TOUCH_ACTION_UP)
    Log("TOUCH_ACTION_MOVE_NOTOUCH = " & a2.TOUCH_ACTION_MOVE_NOTOUCH)

TOUCH_ACTION_DOWN = 0
TOUCH_ACTION_MOVE = 2
TOUCH_ACTION_UP = 1
TOUCH_ACTION_MOVE_NOTOUCH = 100
But it's not reply :), just workaround
 
Last edited:
Top