My Android WebView isn\'t scrollable.
WebView
XML Code:
I had some other elements in my relative layout, which I switched to invisible. This made my webview not scrollable. My solution was:
relativelayout.removeallchilds(); relativelayout.addchild(webview); relativelayout.addchild(overlaybutton);