我知道这篇文章是重复的但以前我没有得到任何积极的回应,为什么重新发布它。
目前日期选择器看起来像这样。
我想更改颜色日期颜色(当前设置为黑色。)
Datepicker主题。
<style name="myDatePickertheme" parent="Theme.AppCompat.Light.Dialog">
<item name="android:headerBackground">@color/white</item>
<item name="android:textColorPrimary">@color/primary_text</item>
@色/白色
尝试解决方案:
@色/白色
在自定义主题中。
Min api = 17
应用主题
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:background">@color/primary_background</item>
<item name="android:colorPrimaryDark">@color/primary_background</item>
<item name="android:navigationBarColor">@color/primary_background</item>
<item name="android:popupBackground">@color/primary_background</item>
<item name="android:alertDialogTheme">@style/myDialog</item>
<item name="android:datePickerDialogTheme">@style/myDatePickertheme</item>
</style>
除了上述设置,我还使用了this link
提供的所有自定义功能