Webview宽度与Android浏览器宽度相比

时间:2012-03-09 08:26:09

标签: android android-layout webview

所以我创建了几个html页面,通过WebView嵌入到一个应用程序中,页面本身在普通的android浏览器中工作得很好但是在WebView模块中,页面的宽度只有313,它允许一点水平滚动,这在Android中的普通浏览器中不会发生。

所需宽度为320px,WebView输出313px但仍允许水平滚动(几个像素)。

下面是我的布局代码,我假设Android在webview中注入了一些我不知道的内联样式,想知道是否有人遇到同样的问题?

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <WebView
        android:id="@+id/help_webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)