Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I define underlined text in an Android layout xml file?

share|improve this question

4 Answers

up vote 171 down vote accepted

It can be achieved if you are using a string resource xml file, which supports HTML tags like <b></b>, <i></i> and <u></u>.

<resource>
    <string name="your_string_here">This is an <u>underline</u>.</string>
</resources>

If you want to underline something from code use:

TextView textView = (TextView) view.findViewById(R.id.textview);
SpannableString content = new SpannableString("Content");
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
textView.setText(content);
share|improve this answer
8  
Hi, i tried the above resource xml code and it diddnt work. it continued to display the <u>underline</u> as a plain text – jonney Jul 1 '11 at 10:15
1  
See also: android.text.Html.fromHtml( ) which returns a Spanned. – Mark Renouf Sep 7 '11 at 18:21

You can try with

textview.setPaintFlags(textview.getPaintFlags() |   Paint.UNDERLINE_TEXT_FLAG);
share|improve this answer
Perfect! Thanks – Heiko Rupp Jun 13 '12 at 8:44
4  
This is by far the easiest solution. This should be the accepted answer. – Nightwish1986 Feb 15 at 9:36

The "accepted" answer above does NOT work (when you try to use the string like textView.setText(Html.fromHtml(String.format(getString(...), ...))).

As stated in the documentations you must escape (html entity encoded) opening bracket of the inner tags with &lt;, e.g. result should look like:

<resource>
    <string name="your_string_here">This is an &lt;u>underline&lt;/u>.</string>
</resources>

Then in your code you can set the text with:

TextView textView = (TextView) view.findViewById(R.id.textview);
textView.setText(Html.fromHtml(String.format(getString(R.id.textview), ...)));
share|improve this answer
<u>underlined here</u> works perfectly. &lt;u>underline&lt;/u> did not work. This is for Android 2.2. Maybe different versions interpret it differently. – autotravis May 14 '12 at 1:13
@autotravis which one is for 2.2? I did not tested it on older versions and it will be quite unfortunate if different versions handle it differently... Also at least current documentation states that it have to be escaped (link is in the answer). – Ogre_BGR May 18 '12 at 8:07
I've tested <u>underlined</u> on android 2.3 and it works. &lt;u>underline&lt;/u> does not work for 2.3. The docs say "Sometimes you may want to create a styled text resource that is also used as a format string. Normally, this won't work because the String.format(String, Object...) method will strip all the style information from the string. The work-around to this is to write the HTML tags with escaped entities, which are then recovered with fromHtml(String), after the formatting takes place." So I guess you would use the escaping if you run it through that String.format(...) method. – autotravis May 19 '12 at 19:07
@autotravis yes, you are correct. I use it with String.format(...). I've edited my answer, thank you for your feedback. – Ogre_BGR May 22 '12 at 14:08
On 2.3 and 4.1 (only ones I tried so far) you can just use textView.setText(getText(R.string.text)) instead of having to use getString(), Html.fromHtml() and String.format(). – RoyS Jul 24 '12 at 7:50
show 1 more comment

Strings.xml file content:

<resource>
     <string name="my_text">This is an <u>underline</u>.</string> 
</resources> 

Layout xml file shold use the above string resource with below properties of textview, as shown below:

<TextView android:layout_width="fill_parent"
     android:gravity="center_horizontal"
          android:layout_height="wrap_content"
     android:selectAllOnFocus="false"
          android:linksClickable="false"
     android:autoLink="all"
          android:text="@string/my_text"
/>
share|improve this answer
1  
Make sure you edit the string resource file inside the actual XML rather than inside the helper editing UI in Eclipse, at it will escape the <s. – Chris R Jan 23 at 22:04

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.