Spinner Control Not Showing The Selected Text
i have an android application in which i have a couple of spinner controls. The default nature of the spinner control is such that the it displays the text that you select from the
Solution 1:
The Motorolla Defy displays text as white unless you explicitly specify a different color
Solution 2:
I've try this code and it does work with me on the Emulator with Android 2.2 :
String[] secteurs = getResources().getStringArray(R.array.Secteurs);
ArrayAdapter<String> sectAddapter = new ArrayAdapter<String>(this, R.layout.list_item, secteurs);
Notice that the Array R.array.Secteurs is a String-Array that contains countries. set the adater like that :
Spinner sectSpinner = (Spinner) findViewById(R.id.spinner3);
sectAddapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
sectSpinner.setAdapter(sectAddapter);
For me it works on the Emulator ! i hope I answered you !
Solution 3:
The answer is very simple and kind of dumb. All i had to do was set the text property to android:textColor = "#000000".
Post a Comment for "Spinner Control Not Showing The Selected Text"