黑莓 - 如何在手机启动时启动我自己的服务?
我想在手机启动时启动自己的服务实现?
如何实现?
I want to start my own service implementation when the phone starts?
How to achieve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在手机启动时启动自己的服务实现?
如何实现?
I want to start my own service implementation when the phone starts?
How to achieve it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您只需在blackberry JDE 中的项目属性中设置“系统模块”和“自动启动”选项即可。这将在手机启动时启动您的应用程序。
You just need to set the "System Module" and "Auto Start" options in the project properties in the blackberry JDE. This will start your app on phone boot.
引用自 如何 - 编写安全初始化代码
Quote from How To - Write safe initialization code
您可以使用 IPC(某种)机制在“服务”和应用程序之间交换数据。有两种方法可以实现此目的:
在第一种方法中,当将数据添加到存储时,不会通知其他实体。
You could use an IPC (kind of) mechanism to exchange data between the "Service" and Application. There are two ways of accomplishing this:
In the first approach, the other entity is not notified when data is added to store.