Hi,
I have simple HTML
<h2>Title</h2><br>
<p>description here</p>
I want to display it in TextView
. How to do this???
Any help would be appreciated.
Hi,
I have simple HTML
<h2>Title</h2><br>
<p>description here</p>
I want to display it in TextView
. How to do this???
Any help would be appreciated.
myTextView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));