Wednesday, 14 June 2017

android - Can underline words in TextView text




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 ?


Answer



Yes, you can, use the Html.fromhtml() method:



textView.setText(Html.fromHtml("this is underlined text"));

No comments:

Post a Comment