📄 fontcanvas.java
字号:
/* * @(#)FontCanvas.java 1.2 01/06/25 @(#) * Copyright 2001 Sun Microsystems Inc, All rights reserved. */package example.fonts;//import javax.microedition.lcdui.*;import javax.microedition.lcdui.Canvas;import javax.microedition.lcdui.Graphics;class FontCanvas extends Canvas { FontTestlet myTestlet; /** * Construct a new canvas */ FontCanvas(FontTestlet fontTestlet) { myTestlet = fontTestlet; } /** * Initialize self. */ void init() { // no setup stuff yet } /** * Cleanup and destroy. */ void destroy() { // can't really get rid of mTestlet here } /* * Ask MemTestlet to paint itself */ protected void paint(Graphics g) { myTestlet.paint(g); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -