gpt4 book ai didi

java - 在j2me中显示alert然后跳转到另一个窗体

转载 作者:行者123 更新时间:2023-11-30 09:44:53 25 4
gpt4 key购买 nike

我正在开发 J2ME 应用程序。我想在表单中显示警报并显示另一个类的另一个表单。我尝试了以下方法来显示警报。

public void showMsg() 
{
Alert success = new Alert("Data Not found.");
//success.setImage(img2);
success.addCommand(new Command("Ok", Command.OK, 0));
success.addCommand(new Command("Cancel", Command.CANCEL, 0));
success.setCommandListener(this);
success.setTimeout(Alert.FOREVER);

Display.getDisplay(parent).setCurrent(success, chapterForm);
}

显示警报后,我跳转到另一种形式:

Display.getDisplay(parent).setCurrent(welcomeForm);

当我运行它时,它不显示警报,而是跳转到 welComeForm。那么,我怎样才能显示警报,然后跳转到另一个表单。

最佳答案

Alert 不会自动前进到 chapterForm,因为您已将 Alert 上的默认监听器替换为 this。使用 CommandListener 接口(interface)中的 commandAction() 事件从 Alert 中获取 OK 或 Cancel。然后你可以使用Display.setCurrent(Displayable d)来显示你想要显示的Form。

关于java - 在j2me中显示alert然后跳转到另一个窗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7662743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com