在 Android 中使用 HTML 内容时出现 Web 视图错误

Posted

技术标签:

【中文标题】在 Android 中使用 HTML 内容时出现 Web 视图错误【英文标题】:Web view Error using HTML content in Android 【发布时间】:2013-01-23 23:35:00 【问题描述】:
Errors I am getting when passing html(textstring) content value to webview.loaddata(textstring , "text/html", "utf-8");

在姜饼、果冻豆等中效果很好……但在冰淇淋三明治中遇到问题……请帮我解决这个问题

02-08 13:52:56.899: W/webcore(1694): java.lang.Throwable: EventHub.removeMessages(int what = 107) is not supported before the WebViewCore is set up.
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.WebViewCore$EventHub.removeMessages(WebViewCore.java:1671)
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.WebViewCore$EventHub.access$7800(WebViewCore.java:920)
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.WebViewCore.removeMessages(WebViewCore.java:1783)
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.WebView.sendOurVisibleRect(WebView.java:2858)
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.ZoomManager.setZoomScale(ZoomManager.java:586)
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.ZoomManager.access$1700(ZoomManager.java:49)
02-08 13:52:56.899: W/webcore(1694):    at android.webkit.ZoomManager$PostScale.run(ZoomManager.java:977)

【问题讨论】:

可能重复:***.com/questions/10512282/… 您需要使用 webview 加载一些文本吗? 根据链接我都试过了。但仍然收到此警告,因此它在模拟器中打开而不是在设备中打开。你能告诉我这个错误的原因吗?为什么会这样??????因为它在其他设备上运行良好 @TamilarasiSivaraj yes....HTML 值....使用 asynctask 获取该值并将该值传递给 webview.loaddata()。 我发布了对我有用的答案,我希望也对你有用 【参考方案1】:

试试这个对你有帮助

String data = ...;  // the html data
String base64 = android.util.Base64.encodeToString(data.getBytes("UTF-8"),  
android.util.Base64.DEFAULT);
webView.loadData(base64, "text/html; charset=utf-8", "base64");

你也试试这个

   webView.getSettings().setDefaultTextEncodingName("utf-8");      
   webView.loadDataWithBaseURL(null, html, "text/html", "utf-8", null);

也可以参考这个链接

UTF-8 encoding on WebView and ICS

【讨论】:

不...仍然收到该警告。这是我的 HTML 数据 " + "

" + ""+textcastdet+"" + "

" + "
发布答案很好,但发布您认为错误发生的原因以及您认为您的解决方案如何提供帮助会更好。 WebView wvtxtcastdet; public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.filmdetailspg); wvtxtcastdet=(WebView)findViewById(R.id.webViewfilmdet); System.out.println("IM 3"); wvtxtcastdet.setBackgroundColor(0); wvtxtcastdet.getSettings().setjavascriptEnabled(true); wvtxtcastdet.getSettings().setPluginState(PluginState.ON);新的 CastdetAsync().execute();异步任务 嗨 ARIJIT 我已经编辑了我的评论,请看一下,我希望这对你有帮助

以上是关于在 Android 中使用 HTML 内容时出现 Web 视图错误的主要内容,如果未能解决你的问题,请参考以下文章

在android列表视图中向下滚动时出现***Exception

Eclipse中使用recyclerview时出现Caused by: java.lang.NoClassDefFoundError: android.support.v7.recyclerview.

使用带有 HTML5 和 jquery 的 phonegap 1.3.0 创建 android 应用程序时出现无限弹出错误?

更改后面代码中的任何内容时出现 NullPointerException

阅读Microsoft Word文档时出现Android Apache POI错误:org.apache.xmlbeans.SchemaTypeLoaderException无法解析句柄的类型(代码片

在自定义适配器上使用.getFilter()时出现问题(未正确过滤)(Android)