从游戏画布导航到表单

发布于 2024-09-09 23:15:59 字数 51 浏览 3 评论 0原文

当您要求用户插入他或她的用户名和密码时,如何从游戏画布导航到 Java ME 中的表单?

How do you navigate from a game canvas to a form in Java ME when you require a user to insert his or her username and password?

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

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

发布评论

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

评论(1

只为一人 2024-09-16 23:15:59

创建表单并向其中添加一些“确定”命令。

要显示表单,您必须执行以下操作:

Display.getDisplay(this).setCurrent(yourForm);

当使用 OK 命令时,您应该执行:

Display.getDisplay(this).setCurrent(yourCanvas);

并从表单中读取数据

Create the form and add some "OK" command to it.

To show the form, you have to do the following:

Display.getDisplay(this).setCurrent(yourForm);

When that OK command is used, you should do:

Display.getDisplay(this).setCurrent(yourCanvas);

and read the data from the form

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