Is it possible to set multiple styles for different pieces of text inside a TextView?
For instance, I am setting the text as follows:
tv.setText(line
Try Html.fromHtml(), and mark up your text with bold and italic HTML tags e.g:
Html.fromHtml()
Spanned text = Html.fromHtml("This mixes bold and italic stuff"); textView.setText(text);