【发布时间】:2019-06-05 12:14:39
【问题描述】:
我为应用程序制作了一个简单的侧边菜单。首次调用菜单时。菜单显示正常。
当我第二次重新调用菜单时,我看到一个空白屏幕。
这就是我构建菜单的方式:
package com.mainsys.zappeion;
import static com.codename1.ui.CN.*;
import com.codename1.ui.Form;
import com.codename1.ui.Dialog;
import com.codename1.ui.plaf.UIManager;
import com.codename1.ui.util.Resources;
import com.codename1.io.Log;
import com.codename1.ui.Toolbar;
import com.codename1.ui.FontImage;
/**
* This file was generated by <a href="https://www.codenameone.com/">Codename One</a> for the purpose
* of building native mobile applications using Java.
*/
public class Zappeion {
private Form current;
private Resources theme;
public void init(Object context) {
// use two network threads instead of one
updateNetworkThreadCount(2);
theme = UIManager.initFirstTheme("/theme");
// Enable Toolbar on all Forms by default
Toolbar.setGlobalToolbar(true);
// Pro only feature
Log.bindCrashProtection(true);
addNetworkErrorListener(err -> {
// prevent the event from propagating
err.consume();
if(err.getError() != null) {
Log.e(err.getError());
}
Log.sendLogAsync();
Dialog.show("Connection Error", "There was a networking error in the connection to " + err.getConnectionRequest().getUrl(), "OK", null);
});
}
public void start() {
if(current != null){
current.show();
return;
}
Toolbar tb = new Toolbar();
Statues statues = new Statues();
statues.setToolbar(tb);
tb.addMaterialCommandToSideMenu("Αγάλματα", FontImage.MATERIAL_ALBUM, e -> {
statues.show();
});
Sights sights = new Sights();
sights.setToolbar(tb);
tb.addMaterialCommandToSideMenu("Αξιοθέατα", FontImage.MATERIAL_ALBUM, e -> {
sights.show();
});
Map map = new Map();
map.setToolbar(tb);
tb.addMaterialCommandToSideMenu("Χάρτης ", FontImage.MATERIAL_ALBUM, e -> {
map.show();
});
MainSys mns = new MainSys();
mns.setToolbar(tb);
SplashScreen sc = new SplashScreen(); //(sights, mns);
sc.setToolbar(tb);
sc.show();
}
public void stop() {
current = getCurrentForm();
if(current instanceof Dialog) {
((Dialog)current).dispose();
current = getCurrentForm();
}
}
public void destroy() {
}
}
在上面的代码上,例如,如果我单击菜单上的 Sights Form,它将显示 ok。如果然后我重新单击此菜单,我将得到一个空白屏幕,没有菜单工具栏,什么也没有。
感谢任何帮助。
【问题讨论】:
标签: codenameone