What is the difference between an event that has been "consumed" vs an event that has been "handled"?
Appreciate the help :)
[Edit] For example:
onTouchEvent(MotionEvent event) returns true
if the event was handled - false
otherwise
onTouch()
returns true if the listener has consumed the event - false
otherwise