How can I get a TextView to show text in more than one color? I'm looking for an effect like:
<span style="color:green;">Question: </span><span> Who was the first president?</span>
I can't use separate TextViews inside a Horizontal Linear Layout since it doesn't display correctly when the text wraps. I also tried using Html.FromHtml but it didn't work since it doesn't support styles on a span tag.