WebView.loadData 在 Android 9.0 上不起作用 (API-29)

我有一个文章应用程序,我正在显示中的文章。在 Android 版本 9.0 (API-29) 中,这不起作用。该应用程序在我的文章“活动”中未显示任何内容WebViewWebView

mWebView.setVisibility(View.VISIBLE);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setLoadWithOverviewMode(true);
mWebView.getSettings().setUseWideViewPort(true);
mWebView.getSettings().setMinimumFontSize(14);

String htmlContent = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"
   + "<head>"
   + "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />"
   + "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"/>"
   + "<style type=\"text/css\">body{color: #525252;} img {max-width: 100%; height: auto}</style>"
   + "</head>"
   + item.getContent() //content of item
   + "";

mWebView.loadData(htmlContent, "text/html; charset=utf-8", "UTF-8");

因此,我该如何解决这个问题?


答案 1

我解决了我的问题,问题发生在具有最新Chrome的智能手机中。

溶液:

请勿使用

mWebview.loadData

方法,而使用

mWebview.loadDataWithBaseURL

因此,我的解决方案是:

mWebview.loadDataWithBaseURL(null,htmlContent,"text/html", "utf-8", null);


答案 2

您的 HTML 内容应采用 Base64 或 URL 编码。您的 HTML 示例中有一个“#”,这在某些 WebView 版本上会导致问题。

下面是一个使用 Base64 编码的示例。

String htmlContent = "...";
String encodedHtml = Base64.encodeToString(htmlContent.getBytes(), Base64.NO_PADDING);
webView.loadData(encodedHtml, "text/html", "base64");

这里是javadoc的细节。


推荐