如何在webview中阅读特殊字符?

时间:2014-09-13 10:42:00

标签: android android-webview

我正在开发一篇管理android应用程序的文章,其中文章通过JSON解析。

JSON解析的所有值都在Web视图中加载,但WebView无法读取某些特殊字符。

{
    web1 = (WebView) findViewById(R.id.webView2);               
    web1.setWebViewClient(new myWebClient());              
    web1.getSettings().setJavaScriptEnabled(true);             
    web1.loadData(c,"text/html", "UTF-32");  
}

1 个答案:

答案 0 :(得分:0)

你可以这样做,

 WebView webview = new WebView(collection.getContext());
 webview.loadDataWithBaseURL(url, textWithQuotesIn, "text/html", "UTF-8", url);