WebView 乱码

//WebView里显示加载一段带日语的HTML时,使用

webview.loadData(str,"text/html","utf-8");//出现乱码,加上设置webview.getsettings().setdefaultEncode("utf-8")//都没有效果。





解决方案:



//采用

loadDataWithBaseURL(null,data, "text/html", "utf-8",null);

 

你可能感兴趣的:(webView)