View.onTouchEvent only registers ACTION_DOWN event View.onTouchEvent only registers ACTION_DOWN event android android

View.onTouchEvent only registers ACTION_DOWN event


You need to return true to get the following events after a down.


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.