Reputation: 1897
i want to customize DatePickerDialog. My core objective is to change the theme of whole DatePickerDialog.
is this possible to customize the theme of DatePickerDialog.
if this not possible then i want the sample code for any date picker.
Upvotes: 2
Views: 1632
Reputation: 415
You try set style for it
style
<style name="MyPickerDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:colorAccent">@color/primary</item>
</style>
Set style for dialog
DatePickerDialog dialog = new DatePickerDialog(context, R.style.MyPickerDialog);
dialog.show();
Hope this help.
Upvotes: 2