Để làm cho một phần văn bản của bạn được gạch chân và tô màu
trong string.xml của bạn
<string name="text_with_colored_underline">put the text here and <u><font color="#your_hexa_color">the underlined colored part here<font><u></string>
sau đó trong hoạt động
yourTextView.setText(Html.fromHtml(getString(R.string.text_with_colored_underline)));
và cho các liên kết có thể nhấp:
<string name="text_with_link"><![CDATA[<p>text before link<a href=\"http://www.google.com\">title of link</a>.<p>]]></string>
và trong hoạt động của bạn:
yourTextView.setText(Html.fromHtml(getString(R.string.text_with_link)));
yourTextView.setMovementMethod(LinkMovementMethod.getInstance());