诺基亚j2me全屏宽度、高度设置后不返回

发布于 2024-09-12 04:09:45 字数 129 浏览 5 评论 0原文

我正在创建画布并将其设置为全屏。在画布中,我的 getHeight() 和 getWidth() 函数不返回全屏的实际高度和宽度。它返回它们,就好像我没有将其设置为全屏一样。

如何获取诺基亚手机或其他有相同问题的手机的全屏尺寸?

I'm creating a canvas and setting it as fullscreen. In the canvas my getHeight() and getWidth() functions does not return the actual height and width of the full screen. It returns them as if I didn't set it to full screen.

How can I get the size of the full screen in nokia phones or other ones that have the same problem?

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

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

发布评论

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

评论(2

合久必婚 2024-09-19 04:09:46

你用什么诺基亚手机?怎么设置成全屏呢?我用过一些诺基亚 S60、S40,效果很好。

这可能对某人有帮助:

public MainCanvas(KeyDetection midlet, Display display) {
    setFullScreenMode(true);
    this.midlet = midlet;
    this.display = display;
}

What a nokia phone do you use? How do you set it to fullscreen? I used some nokia S60, S40, and it works.

This may be help for someone:

public MainCanvas(KeyDetection midlet, Display display) {
    setFullScreenMode(true);
    this.midlet = midlet;
    this.display = display;
}
老旧海报 2024-09-19 04:09:46

调用“setFullScreenMode(true)”和画布实际进入全屏模式之间可能会有一点延迟。在调用全屏后添加一个小的延迟(~500ms)应该可以解决问题

There might be a small delay between calling 'setFullScreenMode(true)' and for canvas actually going to full screen mode. Adding a small delay (~500ms) after the call to go full screen should do the trick

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