?? tickerdemo.java
字號:
/* * @(#)TickerDemo.java 1.5 03/01/22 * * Copyright (c) 2000-2003 Sun Microsystems, Inc. All rights reserved. * PROPRIETARY/CONFIDENTIAL * Use is subject to license terms */package ticker;import javax.microedition.lcdui.*;import javax.microedition.midlet.MIDlet;/** * The Ticker Demo simply sets a rather long ticker to the screen. * * @version 2.0 */public class TickerDemo extends MIDlet { /** * This is the text displayed in the ticker. */ private static final String TICKER_TEXT = "This is a ticker see it " + "scroll along the way... On and on it goes without " + "stoping even for a second!"; //默認(rèn)字符串 private boolean firstTime; private Form mainForm; //窗體 public TickerDemo() { firstTime = true; mainForm = new Form("Ticker"); //初始化 } protected void startApp() { if(firstTime) { Ticker t = new Ticker(TICKER_TEXT); mainForm.setTicker(t); // firstTime = false; } Display.getDisplay(this).setCurrent(mainForm); } protected void destroyApp(boolean unconditional) { } protected void pauseApp() { }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -