我正在开展一个项目,我必须展示微调器。 Spinner工作正常但没有显示丢失图像..你们可以帮助我解决这个问题。
这是我的xml
<Spinner
android:id="@+id/seasonSpinner"
android:layout_width="@dimen/forgot_logo_width"
android:layout_height="@dimen/preorderbtn_height"
android:layout_marginBottom="@dimen/ppv_margin"
android:layout_marginLeft="@dimen/seasonSpinner_margin"
android:layout_marginRight="@dimen/ppv_margin"
android:layout_marginTop="@dimen/ppv_margin"
android:background="@drawable/spinner_theme"
android:overlapAnchor="false"
android:paddingRight="0dip"
android:popupBackground="#e2e1e1"
android:spinnerMode="dropdown"
android:theme="@style/applicationTheme"/>
这是我的可绘制的
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:angle="270"
android:centerColor="@color/spinnerbackground"
android:endColor="@color/spinnerbackground"
android:startColor="@color/spinnerbackground"
android:type="linear" />
<stroke
android:width="1dp"
android:color="@color/lollipop_spiner_color2" />
<corners android:radius="1dp" />
<padding
android:left="0dp"
android:right="0dp" />
</shape>
</item>
<item
android:width="@dimen/listview_img_width"
android:height="@dimen/listview_img_height"
android:drawable="@drawable/spinner_arrow"
android:gravity="right|center"
android:right="10dp" />
</layer-list>
和style.xml
<style name="applicationTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:dropDownListViewStyle">@style/mySpinnerStyle</item>
</style>
我哪里错了?