⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mypausecanvas.java

📁 SymbianOS J2ME一书的源码
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -