I have the following sub for a panel touch
The Log statement gives me 0, 1, 2 and sometimes a 3
What is a 3 for Action?
BobVal
B4X:
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
What is a 3 for Action?
BobVal