iOS Question Touch End

klaus

Expert
Licensed User
Longtime User
You need to check ACTION_UP in the Touch event.
B4X:
Sub Panel1_Touch(Action As Int, X As Float, Y As Float)
    Select Action
    Case Panel1.ACTION_DOWN
        ' code for touch down
    Case Panel1.ACTION_MOVE
        ' code for touch move
    Case Panel1.ACTION _UP
        ' code for touch up
    End Select
End Sub
 
Upvote 0
Top