Graphics: fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) : Graphics « javax.microedition.lcdui « Java by API






Graphics: fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)

 

import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Graphics;
import javax.microedition.midlet.MIDlet;

public class J2MEPacer extends MIDlet {
  public void startApp() {
    Displayable d = new PacerCanvas();

    d.addCommand(new Command("Exit", Command.EXIT, 0));
    d.setCommandListener(new CommandListener() {
      public void commandAction(Command c, Displayable s) {
        notifyDestroyed();
      }
    });

    Display.getDisplay(this).setCurrent(d);
  }

  public void pauseApp() {
  }

  public void destroyApp(boolean unconditional) {
  }
}

class PacerCanvas extends Canvas {
  public void paint(Graphics g) {
    int w = getWidth();
    int h = getHeight();

    g.setColor(0xffffff);
    g.fillRect(0, 0, w, h);
    g.setColor(0x000000);

    g.drawRect(12, 12, 20, 20);
    g.fillRoundRect(33, 33, 20, 20, 5, 5);
    g.drawArc(8, 88, 20, 20, 0, 360);
  }
}

   
  








Related examples in the same category

1.Graphics.BASELINE
2.Graphics.BOTTOM
3.Graphics.DOTTED
4.Graphics.HCENTER
5.Graphics.LEFT
6.Graphics.SOLID
7.Graphics.TOP
8.Graphics.VCENTER
9.Graphics: drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
10.Graphics: drawLine(int x1, int y1, int x2, int y2)
11.Graphics: drawString(String str, int x, int y, int anchor)
12.Graphics: fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
13.Graphics: fillRect(int x, int y, int width, int height)
14.Graphics: setClip(int x, int y, int width, int height)
15.Graphics: setColor(int RGB)
16.Graphics: setGrayScale(int value)
17.Graphics: setStrokeStyle(int style)
18.Graphics: translate(int x, int y)