How can I change the font color of the selected item in a spinner?
I am able to change the background color of the selected item, the color of the dropdown item etc,
just use this line onItemSelected listner -
public void onItemSelected(AdapterView> parent, View arg1, int arg2,long arg3) { item = (String) parent.getItemAtPosition(arg2); ((TextView) parent.getChildAt(0)).setTextColor(0x00000000); }