Попробуйте добавить следующий атрибут:
android:headerYearTextAppearance
Вид текста для года (например, 2014) в выбранном заголовке даты.
Может быть ссылкой на другой ресурс в форме "@ [+] [package:] type / name" или атрибутом темы в форме "? [Package:] type / name".
Источник
Реализация:
<DatePicker xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/your_datepicker"
...
android:headerYearTextAppearance="@style/YourStyle"/>
и в вашем файле styles.xml:
<style name="YourStyle" parent="@android:style/TextAppearance.Small">
<item name="android:textColor">@color/your_color</item>
<item name="android:textSize">...</item>
</style>