i want to add a multicolor (maybe html) text to a clickable android listview.
For example: test Is that possible?
i want to add a multicolor (maybe html) text to a clickable android listview.
For example: test Is that possible?
Yes it is possible.
Use The Spannable API.
A tuto explain you in details how to do it: http://blog.stylingandroid.com/archives/177
Just some code for understand:
TextView textView = (TextView)findViewById( R.id.TextView );
Spannable spannable = (Spannable)textView.getText();
StyleSpan boldSpan = new StyleSpan( Typeface.BOLD );
spannable.setSpan( boldSpan, 41, 52, Spannable.SPAN_INCLUSIVE_INCLUSIVE );