我想在滚动容器中添加多个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会在底部留下一些额外的空间。无法为此问题找到合适的解决方案。有人可以告诉我为什么会这样吗?
答案 0 :(得分: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,英语不是我的母语,但也希望它可以帮助你。