Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm loading some data, containing latin-1 characters, in a WebView using

String uri = Uri.encode(html);
webview.loadData(uri, "text/html", "ISO-8859-1");

When displayed, the latin1 characters are replaced by weird characters.

If I load the html directly in a TextView (just to test), latin characters are properly displayed.

Anybody can help?

Thanks

html:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

    <!-- some html -->

</html>
share|improve this question
Your device can support the fonts? – xDragonZ Oct 2 '11 at 11:14
@xDragonZ I'm not sure what you mean, but it's a galaxy s and I can see latin characters. – jul Oct 2 '11 at 11:21

6 Answers

myWebView.loadData(myHtmlString, "text/html; charset=UTF-8", null);

This works flawlessly, especially on Android 4.0, which apparently ignores character encoding inside HTML.

Tested on 2.3 and 4.0.3.

In fact, I have no idea about what other values besides "base64" does the last parameter take. Some Google examples put null in there.

You should always use UTF-8 encoding. Every other character encoding has become obsolete for many years already.

share|improve this answer
up vote 9 down vote accepted

Only way to have it working, as commented here:

webview.loadDataWithBaseURL("fake://not/needed", html, "text/html", "utf-8", "");

No URI encoding, utf-8... loadData bug?

share|improve this answer
I think this thread proposes a more elegant solution: stackoverflow.com/questions/7412763/… – Sparky Feb 9 '12 at 18:10
1  
thaaaanks alot :) – cV2 Mar 19 '12 at 15:30
it works..Thanks a lot... – Jackson Chengalai Sep 12 '12 at 11:48

I have display © 2011 and it was displaying ©.

With the below code i have achieved displaying correct value © 2011

webViewContent.loadDataWithBaseURL(null, html, "text/html", "utf-8", null);
share|improve this answer
String start = "<html><head><meta http-equiv='Content-Type' content='text/html' charset='UTF-8' /></head><body>";
String end = "</body></html>";

webcontent.loadData(start+ YOURCONTENT + end,
            "text/html; charset=UTF-8", null);

One of solution of problem.

share|improve this answer

AFAIK that: Firstly, loadData() method is used to load raw html code.
Secondly, just put the html code directly to the loadData(), don't encode it

You might wanna try like this:

webview.loadData(uri, "text/html", "ISO-8859-1");

Cheers!

share|improve this answer

I too had the problem of getting a weird character like  here and there. Tried different options, but the one that worked is below.

String style_sheet_url = "http://something.com/assets/css/layout.css";
    String head = "<head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />" + 
            "<link rel=\"stylesheet\" type=\"text/css\" href=\"" + style_sheet_url + "\" /></head>";    
    String locdata = "<html xmlns=\"http://www.w3.org/1999/xhtml\">" + head + "<body>"+ data + "</body></html>";
    wv_news_text.loadData(locdata, "text/html", "utf-8");

wv_news_text is the WebView.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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