Hiding the scroll bar in WebView

后端 未结 8 1499
栀梦
栀梦 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:43

    This finally worked for me:

    mWebView.setVerticalScrollBarEnabled(false);
    

提交回复
热议问题