试试看:
ListAdapter adapter = new SimpleCursorAdapter(this,
R.layout.listview,
mCursor,
new String[] { MyClass.EVENT,
MyClass.CHANNEL_NAME,
MyClass.PROGRAM_TITLE,
MyClass.EVENTTIME },
new int[] { R.id.event, R.id.channelname, R.id.programtitle, R.id.timestamp}) {
@Override
public void setViewText(TextView v, String text) {
v.setTextColor(Color.RED);
super.setViewText(v, text);
}
};