notifyListener无法调用handler

现象:在panel上添加了事件监听,但在调用panel.nofityLister(PanelEvent.EventType, new Event())触发的时候, handler并没有被调用。

panel.addListener(PanelEvent.EventType, new Listener(){
	@Override
	public void handleEvent(Event arg0) {
	// TODO Auto-generated method stub		
	}
});

原因:用了int 0作为Event的ID。

你可能感兴趣的:(notifyListener无法调用handler)