My screen overrode the Canvas class (instead of Form or List) and overrode the paint method, which is passed a refererence to the graphics object:
public void paint(Graphics g) {
Font font = Font.getFont(Font.FACE_SYSTEM, Font.STYLE_BOLD, Font.SIZE_LARGE);
g.setColor(0x00000000);
g.setFont(font);
g.drawString("Hi Mom", getWidth()/2, 2, Graphics.TOP | Graphics.HCENTER);
}