LWUIT中Back Command的修改
这是我的第一个问题。我会尽力说清楚。
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先将命令添加到表单中:
Form.addCommand(new Command("Back"));
添加
CommandListener
:Form.addCommandListener(new ActionListsner());
在
ActionListener
中显示之前的表单previousForm.showBack();
First add the command to the form:
Form.addCommand(new Command("Back"));
Add
CommandListener
:Form.addCommandListener(new ActionListsner());
In the
ActionListener
show the previous formpreviousForm.showBack();