怎么在TextView中显示HTML?

我有一个简单的HTML

<h2>Title</h2><br>
<p>description here</p>

我想要在Text View中显示出来,应该怎么做?
感谢任何的帮助。

myTextView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));

这个也很不错。

<resource>
    <string name="your_string">This is an <u>underline</u> text demo for TextView.</string>
</resources>