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
Have a look at android.text.Html.
You can use this to do something like:
textView.setText(Html.fromHtml("Hello, <b>I am bold</b>"));
android.text.Html could be your friend here.
static Spanned Html.fromHtml(
String source,
Html.ImageGetter imageGetter,
Html.TagHandler tagHandler )
http://developer.android.com/reference/android/text/Html.html