I was wondering if its possible to set multiple styles for different pieces of text inside a TextView. For instance, I am setting the text as follows:

descbox.setText(line1 + "\n" + line2 + "\n" + word1 + "\t" + word2 + "\t" + word3);

Now, is it possible to have a different style for each text element? I mean bold for line1, normal for word1 and so on...

I found this http://developer.android.com/guide/appendix/faq/commontasks.html#selectingtext:

// Get our EditText object.
EditText vw = (EditText)findViewById(R.id.text);

// Set the EditText's text.
vw.setText("Italic, highlighted, bold.");

// If this were just a TextView, we could do:
// vw.setText("Italic, highlighted, bold.", TextView.BufferType.SPANNABLE);
// to force it to use Spannable storage so styles can be attached.
// Or we could specify that in the XML.

// Get the EditText's internal text storage
Spannable str = vw.getText();

// Create our span sections, and assign a format to each.
str.setSpan(new StyleSpan(android.graphics.Typeface.ITALIC), 0, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
str.setSpan(new BackgroundColorSpan(0xFFFFFF00), 8, 19, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
str.setSpan(new StyleSpan(android.graphics.Typeface.BOLD), 21, str.length() - 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

But it uses position numbers inside the text. Is there a cleaner way to do this?

link|improve this question

If the TextView string is static, you can just add html <b>, <i>, and <u> tags into the strings resource file and they will automatically be applied. E.g. <TextView android:text="@string/test" /> where @string/test is set to <string><b>bold</b>, <i>italic</i></string> – greg7gkb May 2 at 19:41
feedback

6 Answers

up vote 172 down vote accepted

In case, anyone is wondering how to do this, here's one way: (Thanks to Mark again!)

mBox = new TextView(context);
mBox.setText(Html.fromHtml("<b>" + title + "</b>" +  "<br />" + 
            "<small>" + description + "</small>" + "<br />" + 
            "<small>" + DateAdded + "</small>"));

For an unofficial list of tags supported by this method, refer to this link.

link|improve this answer
1  
Thanks man....! – user132014 Apr 12 '10 at 1:42
@Tom: No problem. Glad it helped :) – Legend Jun 21 '10 at 22:58
Can any one post list of all supported tags, even official documentation don't have the list. developer.android.com/reference/android/text/Html.html – Palani Dec 8 '11 at 6:58
@Palani: Mark prepared a list back in 2010. Added the link to my answer. Hope that helps. – Legend Dec 8 '11 at 7:20
feedback

Try Html.fromHtml(), and mark up your text with bold and italic HTML tags (e.g., Html.fromHtml("This mixes <b>bold</b> and <i>italic</i> stuff);).

link|improve this answer
Great... That works... Now, if I want a different size for different texts, I'm assuming it is not right to put it in the html markup because the font tag is deprecated... Is there an alternate way to do this? – Legend Oct 7 '09 at 16:11
Actually that gets me to another question: Is it better to have one textview with html text inside it or three text views with different markups setup without using the html class? I'm assuming its obviously the first one but just wanted to confirm it... – Legend Oct 7 '09 at 16:13
1  
I have no idea what the full roster of tags that Html.fromHtml() supports -- you would need to look at the source code. Inline markup and multiple TextView widgets should be orthogonal decisions. Use multiple widgets if you need precise placement of discrete bits of text. Use inline markup if you, um, need markup inline in a widget. Remember: there is no FlowLayout in Android, so stringing together multiple TextViews to create a paragraph is not truly practical AFAIK. – CommonsWare Oct 7 '09 at 16:54
Thanks for that... Actually, the <small> tag worked... So I'll keep it simple and just use it... – Legend Oct 7 '09 at 18:56
feedback

Slightly off-topic, but I found this too useful not to be mentioned here.

What if we would like to read the the Html text from string.xml resource and thus make it easy to localize. CDATA make this possible:

<string name="my_text">
  <![CDATA[
    <b>Autor:</b> Mr Nice Guy<br/>
    <b>Contact:</b> myemail@grail.com<br/>
    <i>Copyright © 2011-2012 Intergalactic Spacebar Confederation </i>
  ]]>
</string> 

From our Java code we could now utilize it like this:

TextView tv = (TextView) findViewById(R.id.myTextView);
tv.setText(Html.fromHtml(getString(R.string.my_text))); 

I did not expect this to work. But it did.

Hope it's useful to some of you!

link|improve this answer
Not off-topic at all; spot on! Thank you! – Matt Briançon Feb 10 at 20:21
Much better solution for localizing apps. – Jason Van Anden Mar 27 at 13:03
feedback

A really late response here but the list of supported tags is here: http://developer.android.com/guide/appendix/faq/commontasks.html#selectingtext

It also shows that Html.fromHtml isn't really needed

link|improve this answer
Html.fromHtml is often an easier way to style text. Also, this link is already in the original question. – AshtonBRSC Sep 16 '10 at 19:20
feedback

If you dont feel like using html, you could just create a styles.xml in use it like this:

Textview tv = (TextView)findViewById(R.id.textview);
SpannableString text = new SpannableString(myString);

text.setSpan(new TextAppearanceSpan(getContext(), R.style.myStyle),0,5, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
text.setSpan(new TextAppearanceSpan(getContext(), R.style.myNextStyle),6,10, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

tv.setText(text, Textview.BufferType.SPANNABLE);
link|improve this answer
feedback

Text Appearance

android:textStyle – Defines the style of the text. Here 3 values are allowed: bold, normal or italics.

android:typeface – Defines the typeface of the text. Here we have 4 values: monospace, serif, sans and normal.

In Android code it will be something like:

myTextView.setTypeface(Typeface.SERIF,Typeface.BOLD);

Here we define not only the style of the font (bold) but the typeface too. In this case we use a “Serif” typeface.

Read more: http://www.brighthub.com/mobile/htc/articles/74032.aspx#ixzz1FZif06dE

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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