Skip to content Skip to sidebar Skip to footer

A TextView With Multicolored Text

How can I get a TextView to show text in more than one color? I'm looking for an effect like: Question: Who was the first

Solution 1:

I also tried using Html.FromHtml but it didn't work since it doesn't support styles on a span tag.

No, but it does support <font color="...">.

Or, use a SpannableString to assemble the string yourself, applying ForegroundColorSpan styles for the appropriate sections.

Or, use a WebView.


Post a Comment for "A TextView With Multicolored Text"