在 LWUIT 应用程序中获取 Canvas

发布于 2025-01-08 12:42:18 字数 594 浏览 0 评论 0原文

我尝试为我的应用程序 (LWUIT) 设置 fullScreenMode(false) 。但无法获取Canvas。

1种方式: com.nokia.mid.ui.LCDUIUtil.setObjectTrait(javax.microedition.lcdui.Display.getDisplay(this).getCurrent(), "nokia.ui.canvas.status_zone", Boolean.FALSE);两种

方式: javax.microedition.lcdui.Display.getDisplay(this).getCurrent().setFullScreenMode(false);

但我有错误。 getCurrent() 方法返回 Displayable 类,该类没有 setFullScreenMode() 方法。

我还尝试了 javax.microedition.lcdui.Canvas)javax.microedition.lcdui.Display.getDisplay(this).getCurrent() 但它返回 null。

有什么方法可以解决这个问题呢?

I tried set fullScreenMode(false) for my app (LWUIT). But can not get Canvas.

1 way: com.nokia.mid.ui.LCDUIUtil.setObjectTrait(javax.microedition.lcdui.Display.getDisplay(this).getCurrent(), "nokia.ui.canvas.status_zone", Boolean.FALSE);

2 way: javax.microedition.lcdui.Display.getDisplay(this).getCurrent().setFullScreenMode(false);

But I have error. Method getCurrent() return class Displayable which don't have method setFullScreenMode().

Also I tried javax.microedition.lcdui.Canvas)javax.microedition.lcdui.Display.getDisplay(this).getCurrent() but it return null.

What is way for resolved this problem?

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

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

发布评论

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

评论(1

紫罗兰の梦幻 2025-01-15 12:42:18

最后一种方法是正确的,您需要在调用 form.show() 后使用它才能实际工作。

The last way is correct, you need to use it AFTER invoking form.show() for it to actually work.

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