How to set color mTitles Array in that API demo?
http://developer.开发者_运维技巧android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List6.html
In the above link , how toset color to mTitles string.
You should be able to do something like in the getview function
TextView title = (TextView)sv.getChildAt(0);
title.setBackgroundColor(Coor.RED);
精彩评论