WebView documentation says:
By default, WebView does not provide widgets like browsers
It also says:
There are several customization points in WebView where you can add your own behavior. It:
...
Create and configure a subclass of WebViewClient. It will be called when events occur that affect the rendering of content, such as errors or form submissions. You can also intercept the download URL here.
What WebViewClient offers has nothing to do with scrollbars since they are not happy.
I was going to suggest placing the WebView inside the ScrollView , but looking at this link , it seems that the default behavior of the WebView is to enable scrollbars, which makes sense since there are many scroll functions defined in the high-level View class. Have you tried just making a normal WebView? If so, have you tried adding the following to your Java code:
WebView v = (WebView) findViewById(R.id.webview); v.setVerticalScrollBarEnabled(true); v.setHorizontalScrollBarEnabled(true);
CL22 Jun 06 '11 at 16:51 2011-06-06 16:51
source share