Hi I'am trying to change DatePicker Header text color, but I can't find attribute to change this. I want to change header color to white(I know how to do that) and Header text color to Black.
SOLUTION:
<style name="MyDatePickerStyle" parent="@android:style/Widget.Material.DatePicker">
<item name="android:headerBackground">#ffffff</item>
<item name="android:textColorPrimary">#000000</item>
</style>