1

I have a text (sInfoText) with a lots of special characters like 'è'.

I would like to show this special character also in a webview, but I get rubbish characters. Howto convert this special characters programmatically?

wvinfo.loadData(sInfoText,"text/html", "UTF-8");
mcfly soft
  • 11,289
  • 26
  • 98
  • 202

1 Answers1

5

try

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

this ll work on above 4.0.0

Dhwanik Gandhi
  • 685
  • 6
  • 12