I understand that the closed spinner is actually a View, I think. But I am guessing it has a TextView there somewhere to show the text. How do I
to do it programatically you have to extend the adapter class, something like:
ArrayAdapter adapter = new ArrayAdater(this){
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
View v = super.getView(position, convertView, parent);
// change the color here of your v
v. ... etc. etc
}
}