当我使用 java me 应用程序时,如何使通知栏(电池信息、时钟等)可见?
我有一个应用程序(LWUIT、Java Me)。当我在设备上运行该应用程序时,它占据了整个屏幕。
但我希望顶部面板(设备的通知栏)可见。
解决办法有哪些? lwuit
有任何设置吗?
I have an app (LWUIT, Java Me). When I run the app on device, it occupies the complete screen.
But I want the top panel (notification bar of device) to be visible.
What are the solutions? Are there any settings for lwuit
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 J2ME/LWUIT 中,您需要找到当前画布并调用 setFullScreenMode(false) 或启用本机命令(通过 Display.setCommandBehavior)。
我建议不要这样做,因为设备之间的结果看起来/行为完全不同。
In J2ME/LWUIT you need to find the current canvas and just call
setFullScreenMode(false)
or alternatively enable the native commands (viaDisplay.setCommandBehavior
).I would recommend against this since the result would look/behave radically differently between devices.