MarkusR Well-Known Member Licensed User Longtime User Jun 4, 2018 #1 i realizing that at newer os the touch action event 2 (hold) is fire continuous and at older devices only at moving the finger. is there a way /trick that i can get continuous hold events always? inside this events i turn something. my workaround would be a timer event combination.
i realizing that at newer os the touch action event 2 (hold) is fire continuous and at older devices only at moving the finger. is there a way /trick that i can get continuous hold events always? inside this events i turn something. my workaround would be a timer event combination.
Erel B4X founder Staff member Licensed User Longtime User Jun 5, 2018 #2 You cannot change the behavior of the touch event. Don't assume that the touch event will be raised if there is no movement. Store the coordiantes in global variables and use a timer to do whatever you need to do. Upvote 0
You cannot change the behavior of the touch event. Don't assume that the touch event will be raised if there is no movement. Store the coordiantes in global variables and use a timer to do whatever you need to do.
MarkusR Well-Known Member Licensed User Longtime User Jun 5, 2018 #3 ok. thanks. i believe my 10" tablet is more exact and will raise events if the finger move a little bit at the "same" location. Upvote 0
ok. thanks. i believe my 10" tablet is more exact and will raise events if the finger move a little bit at the "same" location.