When I change the background color of my spinner, the drop-down arrow disappears. I have seen some answers to similar questions here, but they don't really address how to make the arrow "reappear" or change the arrow's color directly from the XML (assuming that's possible).
I am trying to make the arrow white, but the spinner (using the code below) still appears without the arrow.
<Spinner
android:id="@+id/eventSpinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="@android:color/holo_green_dark"
android:dropDownSelector="#ffffff"
android:popupBackground="@android:color/holo_green_dark"
android:spinnerMode="dropdown" />
Any help would be appreciated. Thanks in advance.