中国站长下载-为中国站长提供最好最全的建站资源! 首 页发布资源有事留言繁體中文
设为首页
加入收藏
联系我们
 
您当前的位置:中国站长下载 -> 文章中心 -> 网页编程 -> JSP编程 -> 文章内容  虚拟主机 域名注册 退出登录 用户管理
栏目导航
· ASP编程 · .NET编程
· PHP编程 · JSP编程
· CGI 专区
热门文章
· sndvol32 - sndvol3...
· [组图] FLASH:《大话李白》...
· 个人网站到底能赚多...
· [图文] Rundll.exe是病毒吗...
· [组图] Flash:制作MV
· 价值12万元的网站SE...
· 网站创业者,你需要...
· 一个成功的网站设计...
· [图文] FLASH:韩国导航条解...
· 中国网站的赚钱模式...
相关文章
· ASP.NET中WebForm组...
· ASP.NET中WebForm组...
· ASP.NET中WebForm组...
· ASP.NET中WebForm组...
· 用ASP.Net发送MailL...
· ASP.NET 2.0中隐藏l...
· 动态增加的DropDown...
· DataList的分页技术...
· 用ASP.Net发送MailL...
· 用ASP.Net发送MailL...
J2ME中实现可伸展目录树TreeList
作者:无从考证  来源:网易学院  发布时间:2005-8-24 10:42:13  发布人:admin

 减小字体 增大字体

 附代码一份,这是我ME组件库中很早的版本了。别的组件以后在写。其实最好的方法就是写Canvas。

ExpandList.java

package com.skystudio.ExpandList;

public class ExpandListItem {
  public ExpandListItem(Object content,String imgPath,String selectImgPath,String Label,int type,boolean ifselected){
   this.selectImgPath=selectImgPath;
   this.imagePath=imgPath;
   this.content=content;
   this.label=Label;
   this.type=type;
   this.ifselected=ifselected;
  }
  /**
  * 默认图片
  */
  private String imagePath="";
  /*
  * 激活图片,如果为空说明此图片无效
  */
  private String selectImgPath=null;
  /**
  * 组
  */
  public static int GROUP=1;
  /**
  * 记录
  */
  public static int ITEM=0;
  /**
  * 是否选中
  */
  private boolean ifselected=false;
  /**
  * 显示Label
  */
  private String label;
  /**
  * 类型:组,记录
  */
  private int type;
  /**
  * 存储的对象
  */
  private Object content;
   public Object getContent() {
    return content;
   }
  public void setContent(Object content) {
   this.content = content;
  }
  public String getLabel() {
   return label;
  }
  public void setLabel(String label) {
   this.label = label;
  }
  public int getType() {
   return type;
  }
  public void setType(int type) {
   this.type = type;
  }
  public boolean Ifselected() {
   return ifselected;
  }
  public void setIfselected(boolean ifselected) {
   this.ifselected = ifselected;
  }
  public String toString() {
   return this.label+" ";
  }
  public String getImagePath() {
   return imagePath;
  }
  public void setImagePath(String imagePath) {
   this.imagePath = imagePath;
  }
  public String getSelectImgPath() {
   return selectImgPath;
  }
  public void setSelectImgPath(String selectImgPath) {
   this.selectImgPath = selectImgPath;
  }
}

--------------------------------------------------------------------------------

package com.skystudio.ExpandList;

import java.util.Vector;

import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Image;
import javax.microedition.lcdui.List;

import com.skystudio.ui.toolkit.Util;

/**
* @author sky
*
*/
public class ExpandList extends List implements CommandListener {
  private Vector itemList = new Vector();

  private ExpandListItem currentSelectedObject = null;

  private int currentSelectedIndex = -1;

  private Vector appearHookList = new Vector();

  public ExpandList(String title, int type, Vector itemList) {
   super(title, type);
   this.itemList = itemList;
   this.setCommandListener(this);
   LoadList();
  }

  public void appendItem(ExpandListItem item, Image icon, boolean ifSub) {
   appearHookList.addElement(item);
   System.out.println("Add current display list:" + item);
   if (!ifSub) {
    this.append(item.getLabel(), icon);
   } else {
    this.append(" " + item.getLabel(), icon);
   }
  }

  public void Init() {
   int count = this.size();
   for (int i = 0; i < count; i++) {
    this.delete(0);
   }
   this.appearHookList.removeAllElements();
    System.out.println("Now itemList:" + this.itemList);
  }

  public void LoadList() {
   Init();
   for (int i = 0; i < itemList.size(); i++) {
    ExpandListItem elItem = (ExpandListItem) itemList.elementAt(i);
    if (elItem.getType() == ExpandListItem.GROUP) {
     Image icon = Util.getImage(elItem.getImagePath());
    /**
     * @Debug
    */
    if (elItem.Ifselected()) {
     if (elItem.getSelectImgPath() != null) {
      icon = Util.getImage(elItem.getSelectImgPath());
     }
     System.out.println("Add Parent Node:");
     this.appendItem(elItem, icon, false);
     Vector group = (Vector) elItem.getContent();
     for (int j = 0; j < group.size(); j++) {
      ExpandListItem item = (ExpandListItem) group.elementAt(j);
      Image ic = Util.getImage(item.getImagePath());
      System.out.println("Add Sub Node:");
      this.appendItem(item, ic, true);
     }
     } else {
      System.out.println("Add Leave Node:");
      this.appendItem(elItem, icon, false);
     }
    } else if (elItem.getType() == ExpandListItem.ITEM) {
     Image icon = Util.getImage(elItem.getImagePath());
     this.appendItem(elItem, icon, false);
    }
   }
   if (this.currentSelectedIndex != -1) {
    this.setSelectedIndex(currentSelectedIndex, true);
   }
  }

  public Vector getItemList() {
   return itemList;
  }

  public void setItemList(Vector itemList) {
   this.itemList = itemList;
  }

  public void commandAction(Command arg0, Displayable arg1) {
   if (arg0 == List.SELECT_COMMAND) {
    /**
     * Set Current List Selected status
    */
    this.currentSelectedIndex = this.getSelectedIndex();
    System.out.println(this.appearHookList);

    this.currentSelectedObject = (ExpandListItem) this.appearHookList.elementAt(currentSelectedIndex);

    int indexInItemList = this.itemList.indexOf(this.appearHookList.elementAt(this.getSelectedIndex()));
    System.out.println(" Selected: " + currentSelectedIndex + " " + this.currentSelectedObject + " indexInItemList:" + indexInItemList);
    /**
    *
    */
    if (this.currentSelectedObject.getType() == ExpandListItem.GROUP) {
     if (this.currentSelectedObject.Ifselected() == false) {// Previous
      // item
      // status
      // is
      // contractive,need
      // to be
      // expanded.
      System.out.println(this.currentSelectedObject.Ifselected());
      this.itemList.removeElementAt(indexInItemList);
      this.currentSelectedObject.setIfselected(true);
      this.itemList.insertElementAt(currentSelectedObject,
      indexInItemList);
     } else {
      this.itemList.removeElementAt(indexInItemList);
      this.currentSelectedObject.setIfselected(false);
      this.itemList.insertElementAt(currentSelectedObject,
      indexInItemList);
     }
     this.Init();
     this.LoadList();
    } else {
     if (this.currentSelectedObject.getSelectImgPath() != null) {
      if (this.currentSelectedObject.Ifselected() == false) {
       Image icon = Util.getImage(this.currentSelectedObject.getSelectImgPath());
       System.out.println(this.currentSelectedObject.Ifselected());
       this.itemList.removeElementAt(indexInItemList);
       this.currentSelectedObject.setIfselected(true);
       this.itemList.insertElementAt(currentSelectedObject,indexInItemList);
       this.delete(this.currentSelectedIndex);
       this.insert(this.currentSelectedIndex,
       this.currentSelectedObject.getLabel(), icon);
      } else {
       Image icon = Util.getImage(this.currentSelectedObject.getImagePath());
       this.itemList.removeElementAt(indexInItemList);
       this.currentSelectedObject.setIfselected(false);
       this.itemList.insertElementAt(currentSelectedObject,indexInItemList);
       this.delete(this.currentSelectedIndex);
       this.insert(this.currentSelectedIndex,
       this.currentSelectedObject.getLabel(), icon);
      }
      this.setSelectedIndex(this.currentSelectedIndex,true);
     }
    }
   }
  }
}
  附测试代码

import java.util.Vector;

import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.Display;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;

import com.skystudio.Canvas.ListCanvas;
import com.skystudio.ExpandList.ExpandList;
import com.skystudio.ExpandList.ExpandListItem;

public class Main extends MIDlet {
  Display d=null;
  protected void startApp() throws MIDletStateChangeException {
   d=Display.getDisplay(this);
   ListTest();
  }
  private void TestUI(){
   ListCanvas l=new ListCanvas();
   d.setCurrent(l);
  }
  private void ListTest(){
   Vector v1=new Vector();
   for(int i=0;i<10;i++){
    v1.addElement(new ExpandListItem("土匪"+Integer.toString(i),"/img/default.png","/img/Group-open.png","土匪"+Integer.toString(i),ExpandListItem.ITEM,false));
   }
   String v2="警察";
   Vector v3=new Vector();
   for(int i=0;i<10;i++){
    v3.addElement(new ExpandListItem("警察"+Integer.toString(i),"/img/default.png","/img/Group-open.png","警察"+Integer.toString(i),ExpandListItem.ITEM,false));
   }
   Vector v=new Vector();
   v.addElement(new ExpandListItem(v1,"/img/Group-close.png","/img/Group-open.png","土匪帮",ExpandListItem.GROUP,false));
   v.addElement(new ExpandListItem(v3,"/img/Group-close.png","/img/Group-open.png","警察局",ExpandListItem.GROUP,false));
   v.addElement(new ExpandListItem(v2,"/img/default.png","/img/Group-open.png","法官",ExpandListItem.ITEM,false));
   d.setCurrent(new ExpandList("花名册",Choice.IMPLICIT,v));
  }

  protected void pauseApp() {
   // TODO Auto-generated method stub
  }

  protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
   // TODO Auto-generated method stub
  }
}

上一页  [1] [2] 

 
[] [返回上一页] [打 印] [收 藏]
上一篇文章:jsp中javaBean的运用
∷相关文章评论∷    (评论内容只代表网友观点,与本站立场无关!) [更多评论...]
中国站长下载
中国站长下载

本页只接受PR>=4 IT类站点连接,申请连接,谢谢您们的支持!希望我们的下载站能够真正帮到中国的站长们!
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图
Copyright © 2005-2006 ChinaZhan.Net. All Rights Reserved .