In my WebView , I have some block elements that have a background color (other than white). However, the background color does not pass across the sky .. um, screen. Instead, it leaves a small white stripe to the right, where the scroll will go. Now I want the scroll bars to appear only when scrolling (and disappear after the user has finished scrolling). I tried:
android:fadingEdge="vertical|horizontal" android:fadeScrollbars="true" android:scrollbarStyle="insideOverlay" (and all other options)
In addition, my HTML contains the following in <head> :
<meta name="viewport" content="target-densitydpi=device-dpi" />
Thus, it does not allow scaling and does not reduce the default scale.
However, I cannot figure out how to get rid of the white strip. Any ideas?
android android-webview
Felix Oct 22 2018-10-22 16:31
source share