gpt4 book ai didi

android - WebView 在加载本地数据时没有填满屏幕的整个宽度

转载 作者:搜寻专家 更新时间:2023-11-01 08:06:28 25 4
gpt4 key购买 nike

我有一个简单的布局,只有一个 webview。

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

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

</RelativeLayout>

而且我需要从本地资源将数据加载到 webview 中。我是这样做的:

String str = "100% valid html with doctype and other things";
view.loadDataWithBaseURL(null, str, "text/html", "utf-8", null);

但有时它并没有填满整个宽度。你知道,在将数据加载到 webview 时存在滑入效果。因此,在加载时它有时会滑动到屏幕的某个部分(通常是一半)并且不会滑动得更远,结果内容不会填满整个宽度。错误在许多设备上重现(屏幕截图来自 Sony Xperia S,也在一些三星 Galaxy S2 上稳定重现)。

打开硬件加速没有帮助。

那么,为什么会出现这个错误?以及如何解决?

enter image description here

最佳答案

试试这个

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true" />

</RelativeLayout>

关于android - WebView 在加载本地数据时没有填满屏幕的整个宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13800455/

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