I have a webview and am trying to load simple UTF-8 text into it.

mWebView.loadData("將賦予他們的傳教工作標示為", "text/html", "UTF-8");

But the WebView displays ANSI/ASCII garbage.

Obviously an encoding issue, but what am I missing in telling the webview to display the Unicode text?

This is a HelloWorld app.

link|improve this question

Solution: Use the other other method on WebView --> mWebView.loadDataWithBaseURL(null, "將賦予他們的傳教工作標示為", "text/html", "UTF-8", "about:blank"); – BahaiResearch.com Jul 22 '10 at 20:48
feedback

1 Answer

up vote 20 down vote accepted
mWebView.loadDataWithBaseURL(null, "將賦予他們的傳教工作標示為", "text/html", "utf-8", null);
link|improve this answer
Thanks, any idea why this works, is it a bug? For me I can display UTF correctly using loadData pre-Honeycomb but it doesn't work on Honeycomb. I've made the change as above for Honeycomb and it is now displaying correctly. – PJL Aug 12 '11 at 11:11
1  
Hi PJL it was reported as an issue "Issue 3552 - android - WebView.loadData() doesn't show Japanese ..." code.google.com/p/android/issues/detail?id=3552, but now its just a broken link =0 – Jorgesys Aug 12 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.