This is what i am getting from web service in string.
<p><strong>This is instructor&#39;s reply to the guest&#39;s MDB message</strong></p>
This is how i am setting it to text view
String Reply = parent.getString(TAG_ReplyMessage);
TextView ReplyTextView= (TextView) findViewById(R.id.reply_txt);
ReplyTextView.setText(Html.fromHtml(Reply));
but app shows information with <p> and <strong> tags.
Whereas it should render those tags, not to display it's html.
Any help would be highly appreciated.
