4

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.

ShwetaK
  • 180
  • 4
  • 14

1 Answers1

1

I think you should try with this link.

Set Spinner Theme

Problem might be parent attribute in defining themes.

Thanks.

Community
  • 1
  • 1
Pratik Sharma
  • 13,307
  • 5
  • 27
  • 37