Hiding the scroll bar in WebView

后端 未结 8 1527
栀梦
栀梦 2020-12-03 07:05

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

8条回答
  •  生来不讨喜
    2020-12-03 07:36

    Try this -

    For vertical scrollbar -

    webView.setVerticalScrollBarEnabled(false) 
    

    For Horizontal scrollbar -

    webView.setHorizontalScrollBarEnabled(false);
    

提交回复
热议问题