We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Just started running a sketch on an Android phone. So far so good with one exception. I'm putting some progress statistics in area above the main action and have not found the magic to increase font size. Above setup() "PFont f;" is declared and in setup() I state "f = createFont("Arial", 48, true);". In draw() I call: textFont(f, 48); fill(0); textAlign(LEFT); text("bunch of stuff", x, y);
What appears in the Canvas during execution is always a small font size. I have also tried SansSerif and SansSerif-Bold. Is there a forum discussion I couldn't find? Or can someone give me a hint? Thanks...
Answers
Try textSize(your_size). That should do the trick.
Kf
kfrajer: many thanks, textSize() solved the problem.