Android Question [Solve] Color setting problem with AS_DataPicker

Aldo's

Active Member
Licensed User
I would like to set some colors of an AS_DataPicker element. In particular the color of the text of the days and the highlight of the current day.
Can you help me?
 

Alexander Stolte

Expert
Licensed User
Longtime User
the color of the text of the days and the highlight of the current day
B4X:
Dim Dark As AS_DatePicker_Theme = AS_DatePicker1.Theme_Dark
Dark.BodyTextColor = xui.Color_Red
Dark.CurrentDateColor = xui.Color_ARGB(152,254, 55, 96)
AS_DatePicker1.Theme = Dark
 
Upvote 0

Aldo's

Active Member
Licensed User
Now I'll try.
I saw that you included the themes, what other themes are there?
 
Upvote 0
Top