In my WebView
, I have some block elements that have a background color (different than white). However, the background color does not go all the way across the sky.. um, screen. Instead, it leaves a small white strip to the right, for where the scrollbar would go. Now, I want the scrollbars to appear only when scrolling (and fade away once the user has finished scrolling). I tried:
android:fadingEdge="vertical|horizontal"
android:fadeScrollbars="true"
android:scrollbarStyle="insideOverlay" (and all other options)
Also, my HTML contains the following in <head>
:
<meta name="viewport" content="target-densitydpi=device-dpi" />
So that it doesn't allow zooming and doesn't zoom out by default.
However, I can't figure out how to get rid of the white strip. Any ideas?