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 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);
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(c, start, end, 0);
// Delete the tokens before and after the span
ssb.delete(end, end + tokenLen);
ssb.delete(start - tokenLen, start);
text = ssb;
}
return text;
}
* 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 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);
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(c, start, end, 0);
// Delete the tokens before and after the span
ssb.delete(end, end + tokenLen);
ssb.delete(start - tokenLen, start);
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 aMovementMethod 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 fewTextViews 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)


16 comments:
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!
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.
Cool! I like it.
thanks...
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).
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'.
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)?
Good stuff. Thanks!
What if I have multiple words that need styling, e.g. "##apples##, ##oranges##, hello world, ##bananas##" ?
@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.
good one
How can I implement this on EditText?
Thanks for posting this.
Too bad the textviews don't support the ^br/^ tag.
Thanks!
@Mesmo
A line break is simply done with '\n' in the text. You don't need the tag for that.
@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!
Post a Comment