如何限制j2me应用程序仅在横向模式下

发布于 2024-12-23 18:06:00 字数 142 浏览 1 评论 0原文

我正在使用 J2ME 和 LWUIT 开发应用程序。我只想在横向模式下运行此应用程序。 对于诺基亚,有一个属性:Nokia-MIDlet-App-Orientation:横向,但对于其他设备,将应用程序限制为横向模式的属性是什么? 如何针对不同的J2ME设备实现这一点?

I am developing application using J2ME and LWUIT.I want to run this application on landscape mode only.
For Nokia there is an attribute : Nokia-MIDlet-App-Orientation: landscape but for other device , What is the attribute to restrict the application to landscape mode only?
How to achieve this for different J2ME devices?

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

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

发布评论

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

评论(3

格子衫的從容 2024-12-30 18:06:00

以下是仅限制横向模式下应用程序的属性。

诺基亚设备:

Nokia-MIDlet-App-Orientation : Landscape

三星设备:

MIDlet-ScreenMode : Landscape

Following is the attribute to restrict application in landscape mode only.

Nokia device:

Nokia-MIDlet-App-Orientation : Landscape

Samsung device:

MIDlet-ScreenMode : Landscape
孤独陪着我 2024-12-30 18:06:00

如果要在 LWUIT 中锁定屏幕方向,则必须结合使用以下方法。

Display.isPortrait() 如果设备当前处于纵向模式,则返回 true。
Display.canForceOrientation() 如果设备允许通过代码强制定向,则返回 true,功能手机不允许这样做,尽管有些手机包含允许此功能的 jad 属性。
Display.lockOrientation(boolean Portrait)在 canForceOrientation() 返回 true 的设备上,此方法可以将设备方向锁定为纵向或横向模式,

我希望这可以帮助您。

If you want to lock the screen orientation in LWUIT, you must use a combination of the following methods.

Display.isPortrait() Returns true if the device is currently in portrait mode.
Display.canForceOrientation() Returns true if the device allows forcing the orientation via code, feature phones do not allow this although some include a jad property allowing for this feature.
Display.lockOrientation(boolean portrait)On devices that return true for canForceOrientation() this method can lock the device orientation either to portrait or landscape mode

I hope this can help you.

北城挽邺 2024-12-30 18:06:00

我检查了 Display.canForceOrientation() 方法,这给了你错误的答案,因为 LWUITImplementation.java 中的值是硬编码的并且总是返回 false。因此,在 LWUIT 中,如果我们想限制应用程序,唯一的方法是通过代码添加 JAD 属性,但这是不可能的。

I check the method Display.canForceOrientation() this give you the wrong answer because the value in the LWUITImplementation.java is hard coded and always return false. So in LWUIT if we want to restrict application the only way to do this is to add a JAD attribute through code it not possible.

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