gpt4 book ai didi

android - WebView 显示带有 loadDataWithBaseURL 的源 html,而不是渲染 View

转载 作者:IT老高 更新时间:2023-10-28 23:36:02 24 4
gpt4 key购买 nike

我正在开发一个使用 WebView 呈现自定义 html 的应用程序。但是当我打电话时
loadDAtaWithBaseURL(URL, "<html><h1>TEST</h1></html>", "text/html; charset=utf-8;", "utf-8", null);
它在 Genymotion 模拟器上显示 html 本身(未呈现)。在我的 HTC-one 上,它适用于渲染的 html。每个结果都显示为附件。

Shown result on Genymotion emulator Shown result on HTC one

有人有同样的问题或解决方案吗?谢谢。

最佳答案

不要在 KitKat 下方输入 mimeType。

fun getMimeType(): String? {
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
"text/html; charset=utf-8"
} else {
null
}
}
loadDAtaWithBaseURL(URL, "<html><h1>TEST</h1></html>", getMimeType(), "utf-8", null);

Java:

if(Build.VERSION.SDK_INT < 21)
webView.loadDataWithBaseURL("about:blank","<html><h1>TEST</h1></html>","text/html", "UTF-8",null);
else
webView.loadDataWithBaseURL("about:blank","<html><h1>TEST</h1></html>","text/html; charset=utf-8", "UTF-8",null);

关于android - WebView 显示带有 loadDataWithBaseURL 的源 html,而不是渲染 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30420949/

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