スピナーアイテムのリストセレクターの色を、醜いオレンジ色のデフォルト以外のものに変更したいと思います。私が読んだことから、これを行う方法はandroid:spinnerSelector
プロパティを設定することです。android:spinnerSelector
ただし、Eclipseでは、プロパティを設定しようとするとこのエラーが発生します
エラー:パッケージ「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>