坑爹系列-2 webview的白边问题
即使你这么设置,那也是不起作用的,webview仍然会有一点点白边
android:fadingEdge="vertical|horizontal"
android:fadeScrollbars="true"
android:scrollbarStyle="insideOverlay"
HTML contains the following in <head>
:
<metaname="viewport"content="target-densitydpi=device-dpi"/>
你必须这么写
webView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
fuck!
为什么呢,tmd,这是一个bug