【已解决】removeListeners后菜单功能废了

各位大神帮忙看下,我在一局游戏结束的时候Show了GameOver的Layer,同时调用:

cc.eventManager.removeListeners(cc.EventListener.TOUCH_ONE_BY_ONE);

取消我之前给GameLayer创建的单击事件

浏览器上执行没问题,打包成apk以后发现GameOverLayer中的cc.MenuItemImage 对象就不能点了(一个再来一次跟一个退出)。

我确定如果注释掉上面的那句remove以后菜单就能正常操作了,这是为啥呢?
有人知道是为什么吗?

参考文档:

http://cocos2d-x.org/docs/manual/framework/html5/v3/eventManager/en

When using removeAll, all the listeners of this node can be removed. Removing specific listener is a recommending way.

Note: After using removeAll menu can not respond, because it also needs accepting touch event.

Thanks a lot . :2: