Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
TimerDemo.java
Package: shoujidoudizhu.rar [view]
Upload User: haojie1228
Upload Date: 2022-08-08
Package Size: 347k
Code Size: 2k
Category:
Communication-Mobile
Development Platform:
Java
- package poker;
- import javax.microedition.midlet.*;
- import javax.microedition.lcdui.*;
- import java.util.*;
- public class TimerDemo extends MIDlet {
- Display display;
- StarField field = new StarField();
- FieldMover mover = new FieldMover();
- Timer timer = new Timer();
- public TimerDemo() {
- display = Display.getDisplay(this);
- }
- protected void destroyApp(boolean unconditional) {
- }
- protected void startApp() {
- display.setCurrent(field);
- timer.schedule(mover, 100, 100);
- }
- protected void pauseApp() {
- }
- public void exit() {
- timer.cancel(); // stop scrolling
- destroyApp(true);
- notifyDestroyed();
- }
- class FieldMover extends TimerTask {
- public void run() {
- field.scroll();
- }
- }
- class StarField extends Canvas {
- int height;
- int width;
- int[] stars;
- Random generator = new Random();
- boolean painting = false;
- public StarField() {
- height = getHeight();
- width = getWidth();
- stars = new int[height];
- for (int i = 0; i < height; ++i) {
- stars[i] = -1;
- }
- }
- public void scroll() {
- if (painting)return;
- for (int i = height - 1; i > 0; --i) {
- stars[i] = stars[i - 1];
- }
- stars[0] = (generator.nextInt() % width);
- if (stars[0] >= width) {
- stars[0] = -1;
- }
- repaint();
- }
- protected void paint(Graphics g) {
- painting = true;
- g.setColor(0, 0, 0);
- g.fillRect(0, 0, width, height);
- g.setColor(255, 255, 255);
- for (int y = 0; y < height; ++y) {
- int x = stars[y];
- if (x == -1)continue;
- g.drawLine(x, y, x, y);
- }
- painting = false;
- }
- protected void keypressed(int keycode) {
- exit();
- }
- }
- }