在 Android 上停止属于另一个应用程序的服务
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只有一种方式我发现它在回来时一直停止服务。您可以每隔几秒检查一次正在运行的服务列表( 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.
可以强制停止一个包,直到它被另一个包显式地再次启动(例如从启动器打开)。这可以通过以 root 身份运行以下命令来完成:
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: