This is the another graphic example, where we are going to draw a image that look and act like satellite and earth. For creating these types of graphics in J2ME we use MIDlet's. In the example we have created PacerCanvas class that extends the canvas class to draw this graphics.
Please find the methods that are used in this example..
getWidth();
getHeight();
setColor(255, 162, 117);
fillRect(0, 0, w, h);
setColor(0, 0, 255);
drawLine(0, w - x, x, 0);
drawRect(z, z, 30, 30);
fillRoundRect(z, z, 30, 30, 10, 10);
drawArc(z, z, 30, 30, 0, 360);
The Application is as follows:

Source Code of PacerExample.java
import javax.microedition.lcdui.*;
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Graphics MIDlet Example
Post your Comment