5

我想在滚动容器中添加多个 WebView。为了做到这一点,我以编程方式将它们添加到 LinearLayout 中。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/scrollView"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

 <LinearLayout
        android:id="@+id/webViewContainer"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        />

 </ScrollView>

现在的问题是,当我使用 loadDataWithBaseURL() 方法在 WebViews 中加载数据时,WebViews 在底部留下了一些额外的空间。无法为这个问题找到合适的解决方案。谁能告诉我为什么会这样?

4

1 回答 1

0
WebView webView = new WebView(this);
        webView.loadDataWithBaseURL("about:blank",
                Utils.getHtmlData(article.getContent()), "text/html",
                "utf-8", null);
        rl_wrapper.removeAllViews();
        rl_wrapper.addView(webView);

我使用包装器代替 webview,英语不是我的母语,但也希望它可以帮助你。

于 2014-09-02T08:34:41.150 回答