程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 我的J2ME編程練習(4)——StringItem

我的J2ME編程練習(4)——StringItem

編輯:關於JSP


/*
 * stringItemlet.java
 *
 * Created on 2005年4月14日, 下午4:26
 */
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
 *
 * @author  Administrator
 * @version
 */
public class stringItemlet extends MIDlet implements CommandListener,
ItemCommandListener{
    private Form aform;
    private Command okCommand;
    private Command exitCommand;
    private Command hllinkCommand;
    private Command bCommand;
    private Display aDisplay;
    private StringItem hlstringItem;
    private StringItem bstringItem;
    private Alert hlAlert;
    private Alert bAlert;
    public stringItemlet(){
        okCommand=new Command("OK",Command.OK,1);
        exitCommand=new Command("EXIT",Command.EXIT,1);
        hllinkCommand=new Command("LINK",Command.ITEM,2);
        bCommand=new Command("BUTTON",Command.ITEM,2);
        aform=new Form("StringItemTest");
        //if click hyperlink "here",display anAlert
        hlstringItem=new StringItem(null,"here",Item.HYPERLINK);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved