I'm trying to create a spinner like google is using in his contacts app. So I created a spinner, and everything works, but there is one problem: The dropdown menu of the spinner overlaps the spinner item itself: How can I fix this, so that the items shows below the spinner.
<Spinner
android:id="@+id/main_controller_spinner"
style="@android:style/Widget.Holo.Light.Spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:overlapAnchor="true">
</Spinner>