gpt4 book ai didi

Android - ScrollView 内的 WebView 在底部留下空白

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:27:40 30 4
gpt4 key购买 nike

我想在滚动容器中添加多个 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() 方法在 WebView 中加载数据时,WebView 在底部留下了一些额外的空间。无法为此问题找到合适的解决方案。谁能告诉我为什么会这样?

最佳答案

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);

我用一个wrapper代替了webview,英语不是我的母语,但也希望它能帮助到你。

关于Android - ScrollView 内的 WebView 在底部留下空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16128211/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com