代号为1,设置侧面菜单

时间:2016-05-31 13:13:48

标签: codenameone

我如何设置侧边菜单的样式,我使用本教程youtube link创建它,我想让它透明并插入带有徽标的标签

请参阅下面的图片,了解我希望它的样子。

现在的样子

enter image description here

我希望如何看待

enter image description here

我希望打开时看起来如何 enter image description here

1 个答案:

答案 0 :(得分:1)

要设置侧边菜单的样式,请修改主题中的SideNavigationPanel UIID。

要添加徽标,您可以执行以下操作

Toolbar t = new Toolbar();
form.setToolbar(t);
t.setTitle("tayary");
Label logoLabel = new Label(logoImage);
logoLabel.setTextPosition(Label.BOTTOM);
logoLabel.setText("label text here");
logoLabel.setUIID("SideMenuLogo");
t.addComponentToSideMenu(logoLabel);

SideMenuLogo UIID添加到您的主题,将Alignment更改为Center,然后调整上边距和下边距。

要为命令加下划线,请修改主题中SideCommand UIID中的背景。它应该是TypeIMAGE_TILE_HORIZONTAL_ALIGN_BOTTOM。对于图像,您可以在主题中使用任何borderBottom图像(如果您没有,请使用图像边框向导创建任何边框,并使用其borderBottom图像)。

您可以查看this demo以获取示例。