mypausecanvas.java

来自「SymbianOS J2ME一书的源码」· Java 代码 · 共 23 行

JAVA
23
字号
/* * Copyright 2003, 2004 Symbian Ltd. * For License terms see http://www.symbian.com/developer/techlib/codelicense.html */import javax.microedition.lcdui.*;public class MyPauseCanvas extends Canvas {        private Font font = Font.getFont(Font.FACE_PROPORTIONAL, Font.STYLE_BOLD, Font.SIZE_LARGE);        public MyPauseCanvas() {    }    public void paint(Graphics g) {        // show the user a screen with the word "PAUSED" display in the center.        g.setColor(0,0,0);        g.fillRect(0,0,getWidth(),getHeight());        g.setColor(255,255,255);        g.setFont(font);        g.drawString("PAUSED",getWidth()/2,getHeight()/2,Graphics.TOP|Graphics.HCENTER);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?