我想将微调器项目上的列表选择器的颜色更改为丑陋的橙色默认值以外的颜色。根据我的阅读,这样做的方法是设置android:spinnerSelector
属性。但是,在 Eclipse 中,当我尝试设置android:spinnerSelector
属性时出现此错误
错误:在包“android”中找不到属性“spinnerSelector”的资源标识符
这是我的带有微调器的 xml 文件;
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/darkgray" >
<Spinner
android:id="@+id/timespinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:spinnerSelector="@drawable/my_selector"
android:drawSelectorOnTop="true"
android:prompt="@string/timeprompt" />
</RelativeLayout>