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
Try this class.
result = URLDecoder.decode(temp,"UTF-8");