When I change the background color of my counter, the drop-down arrow disappears. I saw some answers to similar questions here, but they really do not address how to make the arrow "reappear" or change the color of the arrow directly from XML (if 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 greatly appreciated. Thanks in advance.
source share