在 Android 上停止属于另一个应用程序的服务

发布于 2024-12-03 01:11:56 字数 105 浏览 2 评论 0原文

Android 上如何停止属于另一个应用程序的服务?服务以 START_STICKY 启动,因此如果我终止它的进程,它会在几秒钟后重新启动。 欢迎任何想法(包括需要 root 访问权限的想法)。

How to stop service belonging to another application on Android? Service is started with START_STICKY so if I kill it's process it gets restarted after few seconds.
Any ideas (incl. those that needs root access) are welcome.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

时间你老了 2024-12-10 01:11:56

只有一种方式我发现它在回来时一直停止服务。您可以每隔几秒检查一次正在运行的服务列表( ActivityManager.getRunningServices(int) ),并在每次找到要杀死的服务时将其杀死。

Only one way I found it stop service all time when it come back. You can check per few seconds list of running services ( ActivityManager.getRunningServices(int) ) and kill the service you want to kill every time when it found there.

北陌 2024-12-10 01:11:56

可以强制停止一个包,直到它被另一个包显式地再次启动(例如从启动器打开)。这可以通过以 root 身份运行以下命令来完成:

am force-stop package_name_to_stop

It is possible to force stop a package until it is explicitly started again by another package (e.g. opened from launcher). This can be done by running the following command as root:

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