How to change the color of divider of spinner in android?
I have tried :
<style name="My_Theme_Name">
<item name="android:spinnerStyle">@style/App_Style_Spinner</item>
</style>
<style name="App_Style_Spinner">
<item name="android:dividerHeight">10dip</item>
<item name="android:divider">@color/another_blue</item>
</style>
I have set the theme of the acitivty to My_Theme_Name. But this doesn't work.
Please Help.