can anybody help me parsing HTML tags in JSON? I got tags like , , etc. on the values of my JSON file. And I want to be able to parse them, so
, , etc.
, etc.
Have a look at android.text.Html.
You can use this to do something like:
textView.setText(Html.fromHtml("Hello, I am bold"));