Kxgx.com - 移动开发网

本站快讯:
搜索: 您的位置主页>移动开发>J2ME>>阅读文章:一个简单的CustomItem使用案例|

一个简单的CustomItem使用案例|

2006-09-01   来源:   作者:未知   【 】 评论:0 条
    import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;

public class SimpleItemMIDlet extends MIDlet
    implements CommandListener {
  public void startApp() {
    Form form new Form("SimpleItemMIDlet");


    form.append(new SimpleItem("SimpleItem"));

    Command c = new Command("Exit", Command.EXIT, 0);
    form.addCommand(c);
    form.setCommandListener(this);

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

  public void pauseApp() {}

  public void destroyApp(boolean unconditional) {}


  public void commandAction(Command c, Displayable s) {
    if (c.getCommandType() == Command.EXIT)
      notifyDestroyed();
  }
}

 class SimpleItem extends CustomItem {

  public SimpleItem(String title) { super(title)}
  // CustomItem abstract methods.
  public int getMinContentWidth() { return 100}
  public int getMinContentHeight() { return 60}
  public int getPrefContentWidth(int width) {
    return getMinContentWidth();
  }
  public int getPrefContentHeight(int height) {
    return getMinContentHeight();
  }
  public void paint(Graphics g, int w, int h) {
    g.drawRect(00, w - 1, h - 1);
    g.setColor(0x000000ff);
    int offset = 0;
    for (int y = 4; y < h; y += 12) {
      offset = (offset + 1224;
      for (int x = 4; x < w; x += 24) {
        g.fillTriangle(x + offset,     y,
                       x + offset - 3, y + 6,
                       x + offset + 3, y + 6);
      }

    }
  }
}
Tags:  
责任编辑:
  • 请文明参与讨论,禁止漫骂攻击。 用户名:新注册)密码:匿名:
    评论总数:0 [ 查看全部 ] 网友评论
    关于我们 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 帮助