我需要在后台运行 symbian 应用程序的方法
如何在我的诺基亚 S60 #rd 版手机上运行应用程序(由我设计)。有人可以指导我吗?或者如果可能的话,请在这里解释一下。
我需要我的应用程序始终在后台运行而不会崩溃,并且即使在重新启动后它也应该调用自身 - 这可能吗?
谢谢。
How may I run an application (designed by me) on my Nokia S60 #rd edition phone. Could someone direct me or if possible then explain here.
I need my application to run in background all the time without crashing and also it should invoke itself even after a restart - would that be possible?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的应用程序不需要 GUI,请创建一个控制台应用程序。
查看这个基本示例。设计应用程序时还要考虑这一点:GUI 与控制台。
至于自动启动功能,这是肯定可以的。请查看本教程。
祝你好运!
If your application doesn't need GUI, create a console application.
Check out this basic example. Also consider this when designing your application: GUI vs Console.
As for the autostart feature, it's sure possible. Check out this tutorial.
Good luck!
另请查找 RProcess。您甚至可以拥有第二个安全网进程,如果第一个安全网进程终止,则使用 RProcess::Logon() 通知该进程。第一个也可能是第二个的安全网:)
Also look up RProcess. You could even have a second safety net process that is notified using RProcess::Logon() if the first one dies. The first could also be the safety net for the second :)