5

我想将微调器项目上的列表选择器的颜色更改为丑陋的橙色默认值以外的颜色。根据我的阅读,这样做的方法是设置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>
4

1 回答 1

5

android:spinnerSelector属性不再是 API 的一部分。这篇文章可能有一个解决方法:Android: How to set spinner selector to own image/icon?

于 2012-09-14T12:45:30.140 回答