In my app I have a ScrollView that contains some linearviews, some textviews and One Webview, then other linear layouts etc. The problem is that the WebView does not scroll. The Scroll listens only on ScrollView.
Any suggestions??
<ScrollView >
<TextView />
<WebView /> <-- this does not scroll
<TextView />
</ScrollView >
Here is the solution. Found online. I have subclassed WebView and i’m using the
requestDisallowInterceptTouchEvent(true);method to allow my webview to handle the scroll event.And in layout.xml