I face the same problem,finally i got solution.You need to create one xml file in drawable folder.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="2dp" />
<solid android:color="#606d73" />
</shape>
and then apply it to the spinner:
<Spinner
android:id="@+id/from_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/refine_drpdn_right"
android:drawSelectorOnTop="true"
android:popupBackground="@drawable/spinner_popup_background"
android:spinnerMode="dropdown" />
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…