减少黑莓模拟器加载时间
有什么方法可以减少黑莓模拟器的加载时间。我发现的一种方法是 View->Turn Graphics Acceleration->off 。每次更改代码时,我们都必须关闭模拟器。有什么办法可以绕过BB模拟器的关闭和重启问题吗?
Is there any way to reduce Blackberry simulator load time. One way I found was View->Turn Graphics Acceleration->off . We have to close the simulator every time we make a change in code. Is there any way to bypass this closing and restarting problem of BB simulators?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是使用较新的SDK(例如版本7)进行开发,这样调试时不需要每次都重新启动模拟器。然后,当您准备好时,只需将其编译到目标平台 - 您甚至可以从命令行执行此操作,当然,在部署之前始终在设备上对其进行测试。
The solution is to use a newer SDK (e.g. version 7) for development which does not require restarting the simulator every time while debugging. Then when you are ready just compile it to a target platform -- you can even do that from command line, of course always test it on the device before deployment.