I am trying to implement handwritten character recognition in Android.
My code has 3 Listeners: onTouch
, onDrag
and onRemove
(So I can get the list of coordinates based on Drag Event). Since for some characters we need to lift up our finger for a small time (eg. for caps K or H, but in my case it's not English characters), but as soon as I lift up my finger from screen it calls remove listener, i want to delay the drag listener for few milliseconds, so that I can get the complete set of coordinates before calling remove listener. Is it possible to delay it, or is there any simple way to achieve this task?