Drawing text
Appearance
From Wikibooks, open books for an open world
Navigate User Interface topic:()
Computer code
Code listing 9.5: Drawing text
publicclass MyCanvasextendsCanvas{ publicvoidinit(){ setFont("Times New Roman",Font.PLAIN,24); setColor(Color.white); setBackGroundColor(Color.black); setLayout(newGridLayout()); add(label); add(button); } }