如何限制j2me应用程序仅在横向模式下
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是仅限制横向模式下应用程序的属性。
诺基亚设备:
三星设备:
Following is the attribute to restrict application in landscape mode only.
Nokia device:
Samsung device:
如果要在 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 modeI hope this can help you.
我检查了 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.