I am putting a Custom WebView inside of a Custom ViewPager: https://github.com/JakeWharton/Android-DirectionalViewPager
I've set the ViewPager to page in the vertical direction, which is the same direction my WebView scrolls, how ever the ViewPager intercepts all touch events.
So how it should work is that the WebView scrolls till it reaches the end, then once it is at the end of its scroll, the ViewPager should be allowed to page to the next page.
I guess, in the ViewPager, I need to find out, when a touch event occurs, the list of child Views that could potentially respond to the event, see if they are scrollable and respond appropriately.
How can I find out this list of potential child views that would receive the touch event if the ViewPager ignored the touch event?