在HTC Sensation XE上安装Android 2.3.4(可能在其他HTC设备上,不幸的是我只能在这一台上)在WebView的右边界有一条奇怪的白线(截图如下)。我还在模拟器上使用相同的参数和华硕TF101测试了我的应用程序,但一切正常。
这个布局在这里发布非常复杂,所以我在这个上测试过(也有同样的bug):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/background"
android:orientation="vertical" >
<!-- This WebView created dynamically -->
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
And here is the page, that I'm testing on。如您所见,没有填充和没有边距(<body style="padding:0; margin:0;">
)。
任何人都可以给我一个可以解决问题的建议吗?感谢。
答案 0 :(得分:4)
我认为您可以使用此webview.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
来隐藏奇怪的滚动条。希望能帮助到你。阅读此内容以获取更多详细信息Hiding the scroll bar in WebView
答案 1 :(得分:0)
我有这个问题,因为SCROLLBARS_OUTSIDE_OVERLAY没有做任何事情让我发疯。事实证明这是一个盒子阴影!!!!