I\'m having the same issue as this thread: Android Material Design Inline Datepicker issue, but I am not using an XML layout, instead I\'m building the DatePicker programmat
If you have to set it up programmatically in a DatePickerFragment just set this:
DatePickerDialog dialog = new DatePickerDialog(getActivity(),android.R.style.Theme_Holo_Dialog_MinWidth, this, year, month, day);
with whatever style you like.