sub PanelLine_Touch(Action As Int, X As Float, Y As Float)
Log(Action) ' This line sometimes reports 3
Select Action
Case Activity.ACTION_DOWN
Case Activity.ACTION_UP
Case Activity.ACTION_MOVE
End Select
End Sub
The Log statement gives me 0, 1, 2 and sometimes a 3
public static final int ACTION_CANCEL
Constant for getActionMasked(): The current gesture has been aborted. You will not receive any more points in it. You should treat this as an up event, but not perform any action that you normally would.