Is there possibility in android to provide TextView some text in Java code with setText(text) function with basic tags like and to make marked words underlined ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, you can, use the Html.fromhtml() method:
|
|||
|
|
|
Define a string as:
|
|||||
|
|
You can use UnderlineSpan from SpannableString class:
Then just use |
|||
|
|
|
||||
|
|

underlineyour textview text and alsoitalic. – Nik Patel Dec 19 '11 at 7:26