Hi All,
Can anybody tell me how to append text with large font size and at the center of the screen?
Hi All,
Can anybody tell me how to append text with large font size and at the center of the screen?
Font font = Font.getFont (Font.FACE_MONOSPACE, Font.STYLE_BOLD,
Font.SIZE_LARGE) ;
g.setFont (font);
g.drawString("String", getWidth()/2, getHeight()/2, BASELINE|HCENTER);
Made With Caffiene And Sleepless Nights