'Android: How to style the DatePicker?

I would like to style the DatePicker, but I cannot find how.

I would like to edit the layout (whose reference can be found here: https://android.googlesource.com/platform/frameworks/base/+/36f469fa46bd009bfbc27d1350af5bde4a4dd378/core/res/res/layout/date_picker_holo.xml), but internalLayout is not recognized by the Android Studio editor

<style name="MyDatePicker" parent="Widget.DatePicker">
    <item name="android:internalLayout">@android:layout/date_picker_holo</item>
</style>

Anyone knows how to do it?



Solution 1:[1]

I believe you would need to recreate the layout with your own view and extend DatePicker. Check out this post Custom DatePicker in Android?

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Community