LWUIT中Back Command的修改

发布于 2024-11-30 11:51:10 字数 193 浏览 0 评论 0原文

这是我的第一个问题。我会尽力说清楚。

我需要在 LWUIT 中创建一个后退命令,该命令允许我返回到以前的表单并传递一些参数以对表单进行一些修改。

我无法使用 Form.getBackCommand() ,因为它返回默认的后退命令,并且使用该命令我无法按照我想要的方式传递参数。

我怎样才能做到这一点?

:)

This is my first question. I will try to be clear.

I need to make a back command in LWUIT that allows me to go back to a previous form and pass some parameters for some modifications of the form.

I can not use the Form.getBackCommand() because it returns the default back command and with that command i can not pass the parameters as i want to do.

How can i do that?

:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-12-07 11:51:10
  1. 首先将命令添加到表单中:
    Form.addCommand(new Command("Back"));

  2. 添加CommandListener:
    Form.addCommandListener(new ActionListsner());

  3. ActionListener中显示之前的表单
    previousForm.showBack();

  1. First add the command to the form:
    Form.addCommand(new Command("Back"));

  2. Add CommandListener:
    Form.addCommandListener(new ActionListsner());

  3. In the ActionListener show the previous form
    previousForm.showBack();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文