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 te
Even I had the same issue. Try this,
Spanned ss=Html.fromHtml(your String); String tempString=ss.toString();