Change text color for Android Spinner
Possible duplicate:
Closed counter text color
I only want to change the color of the text in the spinner. On Android 2.x, it works fine, but Android 4.0 always takes BLACK color. why?
My style:
<style name="spinner">
<item name="android:layout_margin">5dp</item>
<item name="android:background">@drawable/spinner</item>
<item name="android:textColor">#ffffff</item>
<item name="android:paddingLeft">20sp</item>
</style>
My counter:
<Spinner
android:id="@+id/mensaSpinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:entries="@array/mensa_list"
style="@style/spinner"
/>
+3
source to share
No one has answered this question yet
See similar questions:
or similar: