0

Here is my date and time picker: enter image description here

I want to change the separator color from blue to red. Can i do that?

haythem souissi
  • 3,263
  • 7
  • 50
  • 77

1 Answers1

-1
 <style name="myStylr" parent="@android:style/Widget.DeviceDefault.DatePicker">
   <item name="android:divider">@drawable/MyDivider</item>
 </style>

Set this style to your Time,Date Picker

Nirav Tukadiya
  • 3,367
  • 1
  • 18
  • 36
  • @android:style/Widget.DeviceDefault.DatePicker requires API level 14 (current min is 8) – haythem souissi Jan 28 '13 at 09:40
  • @haythemsouissi In-detail analysis here: [Android: how to change the color of the datepicker divider?](http://stackoverflow.com/questions/20148671/android-how-to-change-the-color-of-the-datepicker-divider). – user3264740 Feb 14 '14 at 21:48