narek adonts Well-Known Member Licensed User Longtime User Mar 5, 2015 #1 How detect Panel touch end event. Narek
klaus Expert Licensed User Longtime User Mar 5, 2015 #2 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
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