I have some spinners in my app, which is relatively simple, but for some reason the text on the spinners is white when the background of the app is white. The theme I'm trying to use is android:Theme.Light.
Spinner declaration in XML looks like this:
<Spinner
android:id="@+id/selection_spinner"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:paddingBottom="4dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="4dp"
/>
For the spinner declaration, I'm doing this:
destinationsSpinnerAdapter = new ArrayAdapter<Destination>(getActivity(), android.R.layout.simple_spinner_item);
Finally, I tried to follow the suggestions on this post but without success.