Any body idea about that , How to set underline text on textview? if yes, please tell.
i have used following code but its not working.
tvHide.setText(Html.fromHtml("<p><u>Hide post</u></p>").toString());
Thanks in advance
|
|
|
You have to use SpannableString for that :
Update : You can refer my answer on Underling TextView's here in all possible ways. |
||||
|
|
|
Need not to use HTML properties, let's focus on java xD I had the same problem, i found the way to do it in java:
|
||||
|
|
|
I believe that you need to use CharSequence. You can find an example here. |
|||
|
|
|
You can do it like:
Hope this helps |
|||
|
|
|
you're almost there: just don't call
|
||||
|
|
|
WebView might be an alternative thing you could use. An example from the manual:
|
|||
|
|