I want to fire a method after a touch has been initiated and left the screen. I can detect the beginning of a touch by setting a OnTouch event to the View but can't detect when the hand leave the screen. I want to detect when does the touch stops. How can i detect this?
detect if the touch stopped on an android device screen
3.3k Views Asked by SysClaude At
3
There are 3 best solutions below
0

I would look at this answer. Basically it says that you need to return true to process anything other than ACTION_DOWN.
What you're looking for is http://developer.android.com/reference/android/view/MotionEvent.html - Specifically the use of
MotionEvent.ACTION_UP
. There is a lot of information on the link I've provided :)