I defined a ListAdapter:
setListAdapter(new ArrayAdapter<String>(TimeMode_Choose.this, android.R.layout.simple_list_item_1, Chooses));
Then I defined a background color:
getListView().setBackgroundColor(Color.BLACK);
But now my problem is that the text color of the whole list is black and I can't see the list.
How can I change the textcolor?