2012-03-09 68 views
0

所以我創建了幾個HTML頁面以通過WebView嵌入到應用程序中,頁面本身在正常的Android瀏覽器中正常工作但是在WebView模塊內頁面的寬度僅爲313,它允許一些水平滾動,這在Android的普通瀏覽器中不會發生。與Android瀏覽器寬度相比Webview寬度

所以所需的寬度是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> 
+0

你可能想看看這裏: http://stackoverflow.com/questions/4970045/android-webviews-window-innerwidth-is-coming-313 這爲我工作。 – Steelight 2012-06-12 09:45:24

回答