Wednesday, August 4, 2010

Easy method for formatting Android TextViews

Android TextViews don't have an easy method for changing the style of a substring of its text. You may have wanted to do something like textView.setTextColor(Color.RED, 10, 20); in order to set the 10th to the 20th characters red. I'll show you a method of making this easy to do; not just with colors, but with all sorts of styles.

Using regular HTML tags in strings

You do have a limited option to format your strings without any programmatic methods. In strings.xml, where you define your strings, you can use the simple HTML format tags <b>, <i>, and <u> for bold, italics, and underlining, respectively. For example,
<string name="text1">This text uses <b>bold</b> and <i>italics</i> by using inline tags such as <b> within the string file.</string>
A TextView with this string will appear as: This text uses bold and italics by using inline tags such as <b> within the string file.
Unfortunately, you cannot use any more HTML tags than that. In order to have some nice inline styles, we'll need to use CharacterStyles. This class has many sub-classes, and allows you to do everything from changing the text appearance (like ForegroundColorSpan, to more complicated things like making clickable links (ClickableSpan) and images (ImageSpan).

CharSequences

A quick note about how this works. Skip to the next section if you don't care. TextView, along with many other Android classes which use formatted text, don't just use simple Strings. They use CharSequences. Get this: a CharSequence is more abstract than a String; a String is a sub-class of CharSequence. A CharSequence defines a series of characters, such as a regular string, but it could also define a series of characters with formatting, such as a SpannableString. Internally, what we will do to change the middle of a TextView's text is to add spans to its text. More precisely, we will add CharacterStyles to the TextView's CharSequence (text), which is a SpannableString.

Format text dynamically

Here's a handy utility method which will take in some text, and return the text formatted. The key is to surround the text you want with tokens such as "##". The tokens will be removed in the returned result.
For example, if a TextView has its text set as "Hello, ##world##!" and you want world to be in red, call setSpanBetweenTokens("Hello ##world##!", "##", new ForegroundColorSpan(0xFFFF0000)); will return the text Hello, world! with world in red. Note that you can send multiple spans as parameters to this method.

/**
 * Given either a Spannable String or a regular String and a token, apply
 * the given CharacterStyle to the span between the tokens, and also
 * remove tokens.
 * <p>
 * For example, {@code setSpanBetweenTokens("Hello ##world##!", "##",
 * new ForegroundColorSpan(0xFFFF0000));} will return a CharSequence
 * {@code "Hello world!"} with {@code world} in red.
 *
 * @param text The text, with the tokens, to adjust.
 * @param token The token string; there should be at least two instances
 *             of token in text.
 * @param cs The style to apply to the CharSequence. WARNING: You cannot
 *            send the same two instances of this parameter, otherwise
 *            the second call will remove the original span.
 * @return A Spannable CharSequence with the new style applied.
 *
 * @see http://developer.android.com/reference/android/text/style/CharacterStyle.html
 */
public static CharSequence setSpanBetweenTokens(CharSequence text,
    
String tokenCharacterStyle... cs)
{
    
// Start and end refer to the points where the span will apply
    
int tokenLen = token.length();
    
int start = text.toString().indexOf(token) + tokenLen;
    
int end = text.toString().indexOf(tokenstart);

    
if (start > -1 && end > -1)
    {
        
// Copy the spannable string to a mutable spannable string
        
SpannableStringBuilder ssb = new SpannableStringBuilder(text);
        
for (CharacterStyle c : cs)
            
ssb.setSpan(cstartend, 0);

        
// Delete the tokens before and after the span
        
ssb.delete(endend + tokenLen);
        
ssb.delete(start - tokenLenstart);

        
text = ssb;
    }

    
return text;
}

Clickable spans

One of the spans you can set your text to is a ClickableSpan. You may have added this and wondered why anything didn't happen when you clicked on the link. Well, you need to have one extra step to let Android know that there is a clickable link and it needs to be navigated to. You need to set a MovementMethod to the TextView. You can investigate this further if you wish, or you can just see the sample code to make it work below (and it is also in the sample):


// Adapted from Linkify.addLinkMovementMethod(), to make links clickable.
//
MovementMethod 
m = textView.getMovementMethod();
if ((m == null) || !(m instanceof LinkMovementMethod))
{
    
textView.setMovementMethod(LinkMovementMethod.getInstance());
}

Sample Application

The sample application is a simple application with a few TextViews and a Button. The first TextView shows how you can set a TextView's text just by using HTML tags in strings.xml. The second TextView demonstrates how to change text dynamically, using the above utility method. When the button is clicked, it will first set some text red using a ForegroundColorSpan. Second, it will set some text bold and italics using a StyleSpan. Third, it will make a generic link by setting some text to blue, underlining it (UnderlineSpan), and then creating an onClick method which executes some custom code using a ClickableSpan. The final click demonstrates both a ForegroundColorSpan and a RelativeSizeSpan.


Project source code - formattedtext.zip (7.22 Kb)

64 comments:

  1. Hi Matt, I just discovered your blog today and would like to add it to Planet Android if you don't mind (www.planetandroid.com). However because your articles are long (which I like, btw) I would much prefer an RSS or Atom feed that is not a full feed, i.e., it would contain an excerpt such as the first paragraph or two. This will also generate more traffic back to your site as people click through. Could you adjust the settings on your main feed, or make a new one for the planet to use? Email it to my gmail.com account (userid ed.burnette). Send me a 90px wide face or avatar/design .png icon too if you'd like it to appear next to your feed. Thanks!

    ReplyDelete
  2. Thanks Matt. This was really helpful. I found it easier to extend SpannableStringBuilder to add styles as I'm appending to it. Here's how I did it:

    public class StyleableSpannableStringBuilder extends SpannableStringBuilder {

    public StyleableSpannableStringBuilder appendWithStyle(CharacterStyle c, CharSequence text) {
    super.append(text);
    int startPos = length() - text.length();
    setSpan(c, startPos, length(), 0);
    return this;
    }

    public StyleableSpannableStringBuilder appendBold(CharSequence text) {
    return appendWithStyle(new StyleSpan(Typeface.BOLD), text);
    }

    Now you can use this StyleableSpannableStringBuilder like a normal StringBuilder just using inline appendBold() calls. It's easily extendable to add other methods for other styles and makes your view populating code very readable.

    ReplyDelete
  3. Cool! I like it.

    thanks...

    ReplyDelete
  4. This comment has been removed by the author.

    ReplyDelete
  5. Hi Matt,

    I'm struggling with a similar problem. If you switch your example to use a custom font created with Typeface.createFromAsset(), you lose the ability to have both bold and regular text in the same TextView... well you can do it, but the bold font looks fuzzy and awful as it just uses a faux bold version of the regular font.

    I'm not sure how Google don't suffer the same problem with the built in fonts. Do you know of any way to use two actual Typefaces within one TextView?

    (I should point out, when trying it with a single TTF, rather than bold and regular OTFs, it's improved, so perhaps it depends on the font).

    ReplyDelete
  6. I just thank you. I haven't read your post till the end, because already the title "Using regular HTML tags in strings" helped me really much, to solve my problem with text formating.

    Just to add: to change text-color I used tag 'font' with attribute 'color'.

    ReplyDelete
  7. Thanks a lot!
    I wrote something a little similar but this is much more robust (mine was a decorator that you would have to call one on top of the other)
    Thanks for this, I was wondering though, how do u get images to works (imagespan)?

    ReplyDelete
  8. What if I have multiple words that need styling, e.g. "##apples##, ##oranges##, hello world, ##bananas##" ?

    ReplyDelete
  9. @Anonymous

    You would simply change the "if" statement to a "while" statement, meaning it would replace tokens while it still found them. At the bottom of the while block you would be sure to set the start/end variables again, as in "start = text.toString().indexOf(token, end - tokenLen - tokenLen) + tokenLen;" I haven't tested this but it's something similar.

    ReplyDelete
  10. How can I implement this on EditText?

    ReplyDelete
  11. Thanks for posting this.

    Too bad the textviews don't support the ^br/^ tag.

    ReplyDelete
  12. @Mesmo

    A line break is simply done with '\n' in the text. You don't need the tag for that.

    ReplyDelete
  13. @Mike - That's exactly what I've been looking for! So useful, wonder why it wasn't implemented in the first place?

    Thank you very much!

    ReplyDelete
  14. This is a great piece of code.

    I have tried to use it to do as Anonymous asked and change the character style to several words within a paragraph.

    I have managed to use a while loop that correctly identifies the start and end indexes of words i wish to change which is confirmed by the printout of the words I wish to highlight. Unfortunately the string that I return only highlights the last instance EG if the text was $$banana$$ apple pear $$orange$$ kiwi $$berry$$

    only berry will be changed. My code is as follows, if you can provide any help it would be appreciated:

    public static CharSequence formatText(CharSequence text,
    String token, CharacterStyle... cs)
    {
    // Start and end refer to the points where the span will apply
    int tokenLen = token.length();
    int start = text.toString().indexOf(token) + tokenLen;
    int end = text.toString().indexOf(token, start);
    SpannableStringBuilder ssb = new SpannableStringBuilder(text);

    while (start > -1 && end > -1)
    {
    // Copy the spannable string to a mutable spannable string

    for (CharacterStyle c : cs)
    ssb.setSpan(c, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

    System.out.println("start: " + start);
    System.out.println("end: " + end);
    System.out.println(ssb.subSequence(start, end));

    // Delete the tokens before and after the span
    ssb.delete(end, end + tokenLen);
    ssb.delete(start - tokenLen, start);
    text = ssb;




    start = text.toString().indexOf(token, end - tokenLen - tokenLen) + tokenLen;
    //start = text.toString().indexOf(token, end + tokenLen);
    //System.out.println("start: " + start);
    end = text.toString().indexOf(token, start);
    // System.out.println("end: " + end);


    }

    return ssb;
    }

    ReplyDelete
  15. Forget my last post, just solved it.

    For those that have had the same problem here is my code. This will highlight MULTIPLE words or phrases with the specified token at either side.


    private static CharSequence boldUnderlineText(CharSequence text, String token) {
    int tokenLen = token.length();
    int start = text.toString().indexOf(token) + tokenLen;
    int end = text.toString().indexOf(token, start);

    while (start > -1 && end > -1)
    {
    SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(text);

    //spannableStringBuilder.setSpan(new ForegroundColorSpan(0xFF0099FF), start, end, 0);
    spannableStringBuilder.setSpan(new UnderlineSpan(), start, end, 0);
    /*spannableStringBuilder.setSpan(new ClickableSpan() {

    }, start, end, 0);
    */
    spannableStringBuilder.setSpan(new StyleSpan(Typeface.BOLD), start, end, 0);

    System.out.println("start: " + start);
    System.out.println("end: " + end);
    System.out.println(spannableStringBuilder.subSequence(start, end));

    // Delete the tokens before and after the span
    spannableStringBuilder.delete(end, end + tokenLen);
    spannableStringBuilder.delete(start - tokenLen, start);
    text = spannableStringBuilder;

    start = text.toString().indexOf(token, end - tokenLen - tokenLen) + tokenLen;
    end = text.toString().indexOf(token, start);
    }

    return text;
    }

    ReplyDelete
  16. Looks good to me, Alan! I'd recommend anyone reusing that code to remove the debugging System.out.print statements.

    ReplyDelete
  17. By the way, it should not be start > -1 but start > -1 + tokenLen

    If not, then you can get a problem if you restart and there is no token.

    ReplyDelete
  18. Alan Spowart's way is good but it only allows for one style of format. How would you do it to allow for multiple styles? Like Matt's original way.

    ReplyDelete
  19. Hello!
    I tried to implement the following method to add multiple spans, but for some reason I can only add 1 span no matter what I do.

    http://pastebin.com/gP8Xx3KA

    ReplyDelete
  20. @SAS41 did you try alan spowart's code in the comments?

    ReplyDelete
  21. hello!

    some have a sample implementing :
    new AlignmentSpan.Standard(Alignment.ALIGN_CENTER)

    your help is great appreciated

    ReplyDelete
  22. Hi, was wondering if I could set the text dynamically e.g from the editext with the specific token and then show it on a textview or is it done and only programmatically?

    ReplyDelete
  23. For those interested, I've been working with various tokens to bold some text and italicize other parts within a single TextView - BUT NOT BOTH. At least for me. I imagine this can be used for any other type of formatting. To clarify Alan Spowart's post above, don't pass in a third parameter into the method, just do the check within the method itself:

    switch(token){
    case "###":
    spannableStringBuilder.setSpan(new StyleSpan(Typeface.BOLD), start, end, 0);
    break;

    case "***":
    spannableStringBuilder.setSpan(new StyleSpan(Typeface.ITALIC), start, end, 0);
    break;
    }

    For some reason I couldn't get it to work by passing the formatting in as a parameter; but this works like a charm.

    ReplyDelete
  24. Great ans thanks .
    i have one more question i not able to manage ##apple(space)banana## ....
    how we can implement it.

    ReplyDelete
  25. This comment has been removed by the author.

    ReplyDelete
  26. i have one more question i not able to manage _*apple(space)banana *_

    ReplyDelete
  27. Thank you for sharing this information!

    ReplyDelete
  28. The blog is very useful and informative thanks for the sharing Ethical hacking training

    ReplyDelete
  29. Thanks for sharing this helpful piece of coding, it still helps to modify basic web designs and add text to websites. HTML has always proved best for improving the look and feel of websites and blogs. These simple HTML format tags used with strings help view the text on many websites.

    ReplyDelete
  30. This was a great resource
    Thanks for the manager of this site
    good lunch
    دانلود آهنگ جدید

    دانلود آهنگ جدید
    دانلود آهنگ پرطرفدار
    محسن ابراهیم زاده
    سینا پارسیان مهراد جم

    علی لهراسبی

    دانلود آهنگ
    دانلود آهنگ شاد

    ReplyDelete
  31. Faisalabad is one of the biggest cities in Pakistan and the hub of the textile industry. It is widely acknowledged as the Manchester of Pakistan due to its large industrial role. The quality of the fabrics produced in this city has no parallel. unstitched lawn suits , unstitched lawn suits In fact, the fabric is something of a specialty of Faisalabad. Many people from all over the country flock to this city for a spot of cloth shopping. We aim to provide you all of the best of Faisalabad at our store.

    ReplyDelete
  32. I have read so many posts about the blogger lovers however this piece of writing is genuinely a nice piece of writing, keep it up.
    AI Certification Courses in Bangalore
    Machine Learning r training in Bangalore
    Best Deep learning Course in Bangalore

    ReplyDelete
  33. Greetings! Very helpful advice in this particular post! you can Also check this articles - Read Here

    ReplyDelete
  34. Hey! This is my first visit to your blog! Your blog provided us with beneficial information to work on. You have done a outstanding job! Thanks for this article. Click here for more info.- futminna post utme past question

    ReplyDelete
  35. Thanks for sharing the info. Your articles haven’t been updated recently.
    thejacketzone

    ReplyDelete
  36. I really love this list, but I would really appreciate

    thejacketzone

    ReplyDelete
  37. Nice post! This is a very nice blog that I will definitively come back to more times this year! Thanks for informative post. android programming wallpapers

    ReplyDelete
  38. TextView with this string will appear as Homework Help Online This text uses bold and italics by using inline tags

    ReplyDelete
  39. Keep up the good work; I read few posts on this website, including I consider that your blog is fascinating and has sets of the fantastic piece of information. Thanks for your valuable efforts. IoT hidden menu

    ReplyDelete
  40. It was great. You really have a very good site

    ReplyDelete
  41. It was not first article by this author as I always found him as a talented author. Izaya Orihara Hoodie

    ReplyDelete
  42. Want to withdraw Tangem Wallet to bank account? Follow our step-by-step guide to transfer crypto to fiat easily and securely. Learn about supported exchanges, fees, and withdrawal tips. For personalized help, contact our crypto customer service team for fast, expert assistance. Get started now and manage your digital assets with confidence!

    ReplyDelete
  43. Thank you for providing this very interesting information; I believe it will be extremely helpful for me and everyone.

    ReplyDelete
  44. “Financial analysts exploring a situs slot depo 5k may review how small deposits influence user decisions, risk tolerance, and adherence to personal budgeting strategies.” Situs Slot Depo 5k

    ReplyDelete
  45. The Parke Hoodie is where everyday comfort meets standout style. Designed with a modern fit and premium fabric, it delivers warmth without the bulk and confidence without effort. Whether you’re heading out or staying in, this hoodie keeps your look sharp and your comfort locked in all day.

    ReplyDelete