How can I define underlined text in an Android layout xml file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It can be achieved if you are using a string resource xml file, which supports HTML tags like
If you want to underline something from code use:
|
|||||||||
|
|
You can try with
|
|||||||
|
|
The "accepted" answer above does NOT work (when you try to use the string like As stated in the documentations you must escape (html entity encoded) opening bracket of the inner tags with
Then in your code you can set the text with:
|
|||||||||||
|
|
Strings.xml file content:
Layout xml file shold use the above string resource with below properties of textview, as shown below:
|
|||||
|
