Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hiding the scroll bar in WebView

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 related to customization of the scroll bar programmatically. Thanks!

like image 649
lomza Avatar asked Sep 05 '25 03:09

lomza


1 Answers

try this code,

webView.setVerticalScrollBarEnabled(false);
like image 173
ilango j Avatar answered Sep 07 '25 23:09

ilango j