Webview disable scroll

warwound

Expert
Licensed User
Longtime User
One way would be to wait for the page to load and then set the CSS overflow style to hidden.
Probably set the HTML BODY overflow attribute to hidden using javascript like this:

B4X:
document.body.style.overflowY='hidden';

Martin.
 
Upvote 0
Top