j2me学习笔记1

Command使用

在form子类中用

    addCommand(new Command("Exit", Command.EXIT, 2));
    addCommand(new Command("Listen",Command.OK,1));
    addCommand(new Command("stop",Command.STOP,1));

添加command,第三个参数为优先级,影响到控件的位置。

事件添加

必须实现implements CommandListener 接口

并添加事件监听setCommandListener(CommandListener I);

  public void commandAction(Command command, Displayable displayable) {
    /** @todo Add command handling code */
    if (command.getCommandType() == Command.EXIT) {
// stop the MIDlet
      CMyMIDlet.quitApp();
    }
    else if(command.getCommandType()==Command.OK)
    {
      //display something~
      this.setTicker(new Ticker("running"));
    }
    else if(command.getCommandType()==Command.STOP){
      setTicker(null);
    }
  }
}

LCIUI包分为高级API和低级API

高级API包括:Screen的子类

低级API包括:Canvas的子类和Graphics类

Ticker类,一种图形显示,很搞笑,就是让一个东东在Form的标题上面一直滚动

示例代码如下:

{

  // if  a is Form instance

 a.setTicker(new Ticker("somestr"));

a.setTicker(null);//可以取消这个东东

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值