关闭时黑莓屏幕切换
大家好,
我正在做一个与 OS4.5+ 兼容的黑莓应用程序,我想做一些屏幕转换。当我将屏幕推送到 UiApplication 时,我知道如何通过屏幕的子布局方法来完成它们,但是当我不想让屏幕消失时(比如当我按下后退按钮时),我似乎找不到任何东西。
有人可以帮忙吗?
提前致谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须重写每个屏幕上的 onClose() 方法。
You will have to override the onClose() method on each of your screens.
我不认为 4.5 可以进行转换。但是,由于 Blackberry API UiEngineInstance 类中的 rel="nofollow">
setTransition
方法可能会帮助您。编辑:
看来我误解了这个问题。这是另一个想法:您说过您知道如何在推动屏幕时进行转换。当你回去时也这样做。您可以弹出旧屏幕,然后再次按下它,这样您就可以处理转换。
I don't think you can do transitions for 4.5. But, since Blackberry API the
setTransition
method fromUiEngineInstance
class might help you.EDIT:
It appears I misunderstood the question. Here's another idea: You said you know how to do the transition when you push the screen. Do that when you go back also. You can pop the old screen and then push it again and this way you will be able to handle transitions.