首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

快速为view的工具条中加个上拉列表2

2012-11-07 
快速为view的工具条中加个下拉列表21.初始化Action testActionclass InnerAction extends Action{private

快速为view的工具条中加个下拉列表2
1.初始化Action testAction

class InnerAction extends Action{    private String text;    InnerAction(String text){    super(text);    this.text = text;    }    @Override    public void run() {    super.run();     if("One".equals(text)){    //do one something    }else{    //do two something    }    }    }


3.填充在工具条及菜单栏中
  protected void fillMenuBar(IMenuManager menuBar)
  protected void fillCoolBar(ICoolBarManager coolBar)

参考资料:
使用IMenuCreator
http://www.cnblogs.com/bronte/articles/1880116.html

热点排行