诺基亚 N97 与方向相关
我自己 shweta dodiya。我在使用诺基亚 N97 时遇到了与更改游戏应用程序方向相关的问题。 我正在使用 J2me 技术。我想在打开滑块时暂停我的应用程序。
提前致谢
Myself shweta dodiya.I am facing problem with nokia N97 related to change orientation for my game application.
I am using J2me technology.I want to pause my application when i open my slider.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您使用什么代码,或者您是否使用 Canvas 在屏幕上绘制游戏,或者使用其他一些 API 来为您执行此操作...
如果您有类似这样的
GameScreen extends Canvas
并且您使用GameScreen
对象来绘制和显示游戏,您需要添加对sizeChanged
方法的覆盖,并检查新的宽度 (w) 和新的高度(h) 的 GameScreen,并执行您想要的操作:这是一个简单的伪代码,我希望您能明白这一点。 if语句正在检查新宽度和新高度之间的关系。如果手机处于横向模式,H 小于 W...
I don't know what code are you using, or are you using Canvas to draw the game on screen, or some other API that does that for you...
If you have something like this
GameScreen extends Canvas
and you useGameScreen
object to draw and display the game, you need to add an override tosizeChanged
method to it and check the new width (w) and the new height (h) of the GameScreen, and do the things you want in regards to that:This is a simple pseudo code, I hope you are getting the point. If statement is checking the relation between new width and the new height. If the phone is in landscape mode, H is less then W...