即使用户破坏了android中的应用程序,如何使该应用程序运行?

发布于 2024-12-19 06:07:27 字数 76 浏览 0 评论 0原文

即使用户破坏了它,如何使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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半城柳色半声笛 2024-12-26 06:07:27

如何让 Android 中的应用程序\服务即使用户破坏了它也能运行?

如果“distroied”是指用户通过“设置”应用程序强制停止应用程序,则从 Android 3.1 开始,您的应用程序将不会再次运行,直到用户手动启动您的 Activity(例如,通过主屏幕启动器)。

如果“distroied”意味着用户使用“任务杀手”杀死了应用程序,那么您的应用程序将不会再次运行,直到用户手动启动您的活动(例如,通过主屏幕启动器),至少通过Android 2.1。

即使用户关闭应用程序,我也需要一个类能够工作,我该怎么做?

重新设计您的应用程序,使其不再“即使用户关闭该应用程序,也需要一个类能够工作”。用户可以控制他们的手机,而你却不能。

how to make an application\service in android run even if the user distroied it?

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.

I need that one class will work even if the user will close tha application how can I do that?

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文