Using Delphi XE8.1, how can I select a fixed (monospaced) font in Android?
I tried setting the font.family to Droid Sans Mono, but that didn't help.
Using Delphi XE8.1, how can I select a fixed (monospaced) font in Android?
I tried setting the font.family to Droid Sans Mono, but that didn't help.
When everything else fails the only answer, even if most unlikely, must be correct.
My understanding was, that I can only select a font installed on the target system. If that one is not found the system falls back to the default font. After running out of logical approaches, I found that simply setting the font family to Courier New does the trick.
.Canvas.Font.Family:='monospace'; works pefect for me.