Decode HTML entities in android

The Html class is supposed to do that, however it is said that everything is not supported. It always worked for me but I never had ö so I can’t tell for this one.
Try Html.fromHtml(yourStr) to get the decoded string.

Leave a Comment