View.onTouchEvent only registers ACTION_DOWN event
return true
on the onTouch()
event.
This mean we are still waiting on some new Actions from this event so other events like OnClick()
is disabled.
On action ACTION_UP
you need to return false
at least to not get issues with other events after it.
You need to return true to get the following events after a down.