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
In case, anyone is wondering how to do this, here's one way: (Thanks to Mark again!)
mBox = new TextView(context);
mBox.setText(Html.fromHtml("" + title + "" + "
" +
"" + description + "" + "
" +
"" + DateAdded + ""));
For an unofficial list of tags supported by this method, refer to this link or this question: Which HTML tags are supported by Android TextView?