Issue
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!
Solution
setScrollbarFadingEnabled()
method does exactly what you want. It hides scrollbar when the view isn't scrolling.
webView.setScrollbarFadingEnabled(true);
Answered By - Sergey Glotov
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.