Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to draw the underline below my TextView. I have searched a few content but couldn't find out anything fruitful.

Can anyone please help me out here?

share|improve this question

1 Answer

up vote 35 down vote accepted

There are three ways of underling the text in TextView.

  1. SpannableString

  2. setPaintFlags(); of TextView

  3. Html.fromHtml();

Let me explain you all approaches :

1st Approach

For underling the text in TextView you have to use SpannableString

String udata="Underlined Text";
SpannableString content = new SpannableString(udata);
content.setSpan(new UnderlineSpan(), 0, udata.length(), 0);
mTextView.setText(content);

2nd Approach

You can make use of setPaintFlags method of TextView to underline the text of TextView.

For eg.

mTextView.setPaintFlags(mTextView.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
mTextView.setText("This text will be underlined");

You can refer constants of Paint class if you want to strike thru the text.

3rd Approach

Make use of Html.fromHtml(htmlString);

String htmlString="<u>This text will be underlined</u>";
mTextView.setText(Html.fromHtml(htmlString));
share|improve this answer
Thanks a lot, it worked...:) – David Brown Nov 7 '11 at 6:34
Glad to hear that..Mark this question as solved so that other users can refer it. – Kartik Nov 7 '11 at 6:37
1  
A third approach would be using Html.fromHtml("<u>This text will be underlined</u>"), but I have to admit I'm a much bigger fan of using SpannableStrings. @Kartik: You might as well use a StrikethroughSpan on the text to create the strikethrough effect. :) – MH. Nov 7 '11 at 7:14
1  
@MH : +1 thanks for the info buddy. I really forgot Html.fromHtml();.. – Kartik Nov 7 '11 at 7:16
Love the 3rd approach. Short, simple and concise and adds just one extra line of code to my program. – Matt Feb 15 at 15:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.