Text on spinner is white on a white background
问题 The text on my spinners is white, and I have no idea why. This is my xml, nothing special <Spinner android:id="@+id/spinner_date" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" /> And my code dateSpinner = (Spinner) findViewById(R.id.spinner_date); selectedDate = calendar.getTime(); List<String> list = new ArrayList<String>(); list.add(formatter.format(selectedDate)); dateAdapter = new ArrayAdapter<String>(mContext, android.R.layout.simple_spinner