I am working on a simple android app, my Requirement is,
"After some move events(MotionEvent.ACTION_MOVE is true) on the screen, if the user stops moving for few seconds some where with out taking finger from the screen, then need to perform some action."
*I learnt that LongPress is something which triggers when user doesn't make any move after the down event is triggered(MotionEvent.ACTION_DOWN).*
So is there any way to trigger LongPress after Moving around in the screen?
Or should I create my own listener for the same functionality??
Any help is appreciated.
Thank you.