这是微调器代码:
<com.actionbarsherlock.internal.widget.IcsSpinner
android:id="@+id/mSpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/bg_grey" />
bg_grey是第一张图像中的浅灰色背景。
文本视图代码dropdown_text.xml
:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mDropDown"
android:layout_width="fill_parent"
android:layout_height="30dp"
android:background="@android:color/transparent"
android:padding="2dp"
android:textColor="@color/text_dark_grey">
</TextView>
在活动中:
ArrayAdapter<String> ,Adapter = new ArrayAdapter<String>(mActivity.this, R.layout.dropdown_text, mArray);
Spinner 的 InActive 状态:
这就是我想要的。但,
Spinner 的活动状态:
为什么 DropDown 颜色的背景是深灰色的。我希望它像第一张图片一样是浅灰色的。
谢谢你