标签: android webview
我在WebView中显示text / html。如何让它将\ u00A0显示为非空格?相反,它显示Â(发生在00C2)。
这是一段代码:
String s = "Line of text with A0 here:\u00A0."; WebView v = (WebView)findViewById (R.id.html); v.loadData(s, "text/html", "UTF-8");
我意识到我可以在字符串上使用replace(),但我希望避免额外的处理。