This is given string.
String a=<p><strong>Test</strong></p>\r\n<p> Test description</p>
How to convert this string to display and store in textview?
I used like this. But it is not working.
TextView textView;
textview.setText((Html.fromHtml(a).toString()));
This gives output like this:
<p>strong>Test</strong></p><p> Test description</p>
How to set as proper String in textview?