黑莓如何安排应用程序
在黑莓中,我需要能够在一天中的特定时间启动和关闭应用程序。假设从上午 8:00 开始,然后在下午 5:00 关闭应用程序。是否可以在黑莓中以这种方式安排应用程序?
我正在寻找的功能类似于 Unix 或 Windows 调度程序中的 cron。 我不是开发人员。是否有一个应用程序提供类似于 cron 或 windows 调度程序的功能?
In the blackberry, I need the ability to start and close applications at certain times of the day. Say start at 8:00am and then close the app at 5:00pm. Is it possible to schedule applications this way in blackberry?
The functionality I am looking for would be similar to say cron in Unix or Windows scheduler.
I am not a developer. Is there an app which provides functionality similar to cron or windows scheduler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ApplicationManager 的功能来安排应用程序启动:
还要记下日期和时区更改,如所述
You can use ApplicationManager's functionality to schedule the application launch:
Also make note of date and timezone changes, as mentioned here
这是每分钟调用一个可运行程序的另一个示例。
请注意,您必须为该任务设置备用条目,并确保它在设备启动时启动。应用程序管理器负责调度作业。
在此示例中,每次调用后台 aep 时设备都会振动。
This is another example where a runnable is called to every minute.
Please note that you have to setup an alternate entry for the task and make sure it starts when the device starts. Application Manager is responsible for scheduling the job.
in this example, the device vibrates every time the background aep is called.