I\'m trying to show HTML string with TextView on my android App. I\'m curious about that how could I make it possible to show HTML with inline style via TextView. There\'re some
You need to use Html.fromHtml() to use HTML in your textView as a text
textView
example :
textView.setText(Html.fromHtml("TitleDescription here"));
Description here