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
You can change the text colour or can access the textview in setOnItemSelectedListener event,
spinnerObject.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView> parentView, View selectedItemView, int position, long id) {
((TextView)parentView.getChildAt(0)).setTextColor(Color.rgb(249, 249, 249));
}