我使用以下代码段创建了带有rightSideMenu的工具栏
Button account = new Button("");
titleWithCommands.add(BorderLayout.EAST, FlowLayout.encloseIn(account));
account.addActionListener(e -> tb.openRightSideMenu());
这在使用iPhone皮肤的模拟器上正常工作,但是当我使用Samsung皮肤时,菜单按钮无响应。我已经构建了Andoid应用并安装到Android设备(三星S3)上,但是遇到同样的问题,菜单按钮无响应!
具有与下面相同(相似)的代码
Button account = new Button("");
titleWithCommands.add(BorderLayout.WEST, FlowLayout.encloseIn(account));
account.addActionListener(e -> tb.openSideMenu());
它在模拟器和设备上均可正常运行。我想念什么?