I'm trying to disable scrolling on a tableview in android and implement my own scroll handling. Multiple posts on this dev board claim the only way to do this on android is to overlay a transparent view above the tableview using a higher zIndex.
I have done this, made an overlay that is exactly the screensize (top, bottom set to zero) that gets shown at touchstart, yet the tableview under it still scrolls and the tableview rows underneath this view are still receiving the touch events!
Do you have an example of this that works correctly that you are willing to share?