如何避免 lwuit 应用程序在 java-me 中最小化后重新启动
我已经在 java-me 上使用 lwuit 创建了一个应用程序,但是,每次用户接到电话时,应用程序都会最小化,并且当用户恢复它时,会再次显示第一个表单(启动表单)。如何避免应用程序再次启动?
I've created an application with lwuit on java-me, however, each time the user receives a phone call the applications is minimized and when the user restores it, the first Form is shown again (a splash form). How can I avoid the application from starting again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试重写 onHideNotify() 和 onShowNotify(),在 hideNotify 中,将最后显示的表单存储到变量中并在 onShowNotify() 中显示
Try overriding onHideNotify() and onShowNotify(), In hideNotify, store the last shown form to a variable and display that in onShowNotify()