代号一:在标题下移动hamberger菜单

时间:2017-05-29 13:24:02

标签: codenameone

我想在表格标题下方的容器中显示hamberger菜单。目前hamberger菜单默认出现在表格标题上。所以,请你帮我解决这个问题。 提前谢谢

1 个答案:

答案 0 :(得分:1)

首先,您需要隐藏默认的汉堡菜单按钮。为此,请添加此主题常量:

hideLeftSideMenuBool

并将其设置为true

其次,创建一个自定义按钮,其具有相同的UIIDIcon作为默认设置或其他样式。将此按钮添加到BorderLayout表单北部的容器中。

最后,将以下actionListener添加到按钮:

final Button cmdMenuButton = new Button(" ", yourMenuIcon, "TitleCommand");
cmdMenuButton.addActionListener(evt -> myForm.getToolbar().openSideMenu());