I want to make animal.getScientificName
as Italics(code below). I'm using a List View and setting the text in the listview. I wan't only part of the Text view to be in Italics, Is there anyway I can accomplish this.
I have attached part of the code below,
Thanks for your help.
String[] listNames;
listNames[ i ] = animal.getName().toUpperCase().replaceAll( "_" , " " ) + " \n\n" + "+animal.getScientificName()+";
array_sort = new ArrayList( Arrays.asList( listNames) );
tv.setText( array_sort.get( position ) );