I open the Android date picker in a dialog using my own style.
This implementation works as expected, but once it displays an unexpected interface.
Below is my code:
Style:
<style name="datepicker" parent="Theme.AppCompat.Light.Dialog">
<item name="colorPrimary">@color/header_color</item>
<item name="colorPrimaryDark">@color/header_color</item>
<item name="colorAccent">@color/header_color</item>
</style>
Activity:

dateDialog = new DatePickerDialog(
currentCtx,
R.style.datepicker,
dateSetListener,
jsonDate.year,
jsonDate.month,
jsonDate.day
);
source
share