I want to hide a vertical scroll bar in my WebView when I do not scroll the page. As for now, it is displayed always. I create a WebView programmatically, so my question is
Try this -
For vertical scrollbar -
webView.setVerticalScrollBarEnabled(false)
For Horizontal scrollbar -
webView.setHorizontalScrollBarEnabled(false);