即使用户破坏了android中的应用程序,如何使该应用程序运行?
即使用户破坏了它,如何使android中的应用程序\服务运行?
即使用户关闭应用程序,我也需要一个类能够工作,我该怎么做?
how to make an application\service in android run even if the user destroyed it?
I need that one class will work even if the user will close the application how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果“distroied”是指用户通过“设置”应用程序强制停止应用程序,则从 Android 3.1 开始,您的应用程序将不会再次运行,直到用户手动启动您的 Activity(例如,通过主屏幕启动器)。
如果“distroied”意味着用户使用“任务杀手”杀死了应用程序,那么您的应用程序将不会再次运行,直到用户手动启动您的活动(例如,通过主屏幕启动器),至少通过Android 2.1。
重新设计您的应用程序,使其不再“即使用户关闭该应用程序,也需要一个类能够工作”。用户可以控制他们的手机,而你却不能。
If by "distroied" you mean the user force-stopped the application through the Settings application, your application will not run again until the user manually launches an activity of yours (e.g., through the home screen launcher), starting in Android 3.1.
If by "distroied" you mean the user killed the application using a "task killer", your application will not run again until the user manually launches an activity of yours (e.g., through the home screen launcher), at least through Android 2.1.
Redesign your application to not "need that one class will work even if the user will close tha application". Users are in control of their phones -- you are not.