I am confused about html text that I need to decode before I display it to the user. I do:

result= Html.fromHtml(temp).toString();

where temp contains something like: "B \u0026 M Collision Repair". However result contains exactly the same as temp after execution. What am I missing here?

link|improve this question

79% accept rate
1  
What do you expect to get? Are you sure you didn't mean HTTP decode? – Zoltán Feb 7 at 14:22
actually yes, it should be http. I guess I am on the wrong track. Can you guide me? – michaelsmith Feb 7 at 14:27
feedback

3 Answers

Even I had the same issue. Try this,

Spanned ss=Html.fromHtml(your String);
String tempString=ss.toString();
link|improve this answer
the same, doesnt help – michaelsmith Feb 7 at 14:35
I tried this for WebView. Are u using TExtView? – Andro Selva Feb 7 at 14:40
I show it in an AlertDialog – michaelsmith Feb 7 at 14:41
Did u just try result= Html.fromHtml(temp); without toString(); – Andro Selva Feb 7 at 14:45
cant work. result must be of type Spanned – michaelsmith Feb 7 at 14:46
show 1 more comment
feedback

Try this class.

result = URLDecoder.decode(temp,"UTF-8");
link|improve this answer
doesnt work either – michaelsmith Feb 7 at 14:39
feedback

The \n0006 is Unicode which is not getting translated. Suggestion:

String temp = "<html>B \u0026 M Collision Repair</html>";
String result = Html.fromHtml(temp).toString();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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