我在屏幕上有一个吐司吧。当toastbar出现时,sidemenu打开时,sidemenu会稍微波动并且不起作用,除非单击后退btn。通常情况下,如果屏幕被触摸,侧面菜单会关闭但不在此处。
Plz在这里看视频。
更新
public void start() {
if (current != null) {
current.show();
return;
}
Form hi = new Form("Hi World", BoxLayout.y());
hi.add(new Label("Hi World"));
hi.show();
Command cmd = new Command("home");
hi.getToolbar().addCommandToSideMenu(cmd);
Button btn = new Button("toastBtn");
btn.addActionListener(e -> {
ToastBar.showErrorMessage("this is an error");
});
hi.add(btn);
}