FMXTaskDialog change header and footer font colors

Hello

I need you help in order to change the header and footer font colors of a FMXTaskDialog

As you can see on the image above header and footer is on white font color, how to change on runtime to black color?

Thanks

This is currently not possible. We'll investigate if we can implement a solution to change the color of the labels.

Hello

Also when FMXTaskDialog is configured to inputsetting an "input text" control to receive user caracters, how can I automatically setfocus to the internal input control, so in this way Android or iOS automatically display virtual keyboard?

Thanks

Hi,

What you could do is use a custom edit:

TMSFMXTaskDialog1.InputSettings.InputType := Custom;
TMSFMXTaskDialog1.InputSettings.Control := Edit1;
ActiveControl := Edit1;

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.