I am trying to change the text color of my DatePicker
As with most components, the DatePicker
's text color is effected by textColorPrimary
:
<item name="android:textColorPrimary">@color/Black</item>
I don't know what your style have but you can do it this way:
<style name="MyDatePicker" parent="@android:style/Widget.DeviceDefault.DatePicker">
<item name="android:textColor">#FF0000</item>
</style>