webview加载中文数据显示乱码

问题:
在使用webview.loadData(htmlData, "text/html", "UTF-8")加载一段html文本时,会出现中文乱码。
解决方案:
改成使用webview?.loadDataWithBaseURL("", htmlData, "text/html", "UTF-8","")

你可能感兴趣的:(webview加载中文数据显示乱码)