I'm trying to get access to every touch event on the screen while a user is scrolling through a ScrollView so I can record the rawX, rawY, pressure, orientation and major and minor axis of the touch point. I currently am able to get access to the ACTION_DOWN by using an onTouchListener on a TextView inside the ScrollView. However, subsequent events are not being passed to the TextView.
I only need to monitor the event values of the pointer but I don't want to change any of the functionality of the ScrollView.
Is there anyway I can get access to these events?