Android:杀死(所有)前台运行的应用程序
我正在寻找一种方法来从Linux内核(使用它的进程ID)杀死前台Dalvik应用程序(主动运行)?
我怎样才能实现这个目标?有什么想法吗?内核是否能看到正在运行的应用程序的 pid?
例如,怎么样? Android中的进程管理器/任务管理器实现了这一点吗?
有线索吗?
已编辑:
我正在研究的问题是一种杀死“行为与预期不同”的应用程序的方法。
这种“不同的行为”总是固定的。可以将其想象为向特定端口发送消息。
如何通过留在应用程序之外并仍然拥有杀死它的权限来杀死该应用程序?这就是为什么我想知道如果这个模块不位于内核中,是否必须将其放在框架上。
I am looking for a way to kill the foreground Dalvik App(actively running) from the linux kernel(using it's process ID)?
How can I achieve this? any ideas? Does the kernel see the pid of a running App?
How does for eg. process Manager/Task manager in Android achieve this?
Any leads?
Edited:
The problem I'm looking at is a way to kill an App that "behaves differently than intended".
This "different behaviour" is always fixed. Think of it like sending a message to a particular port.
How can I kill an App by staying outside of it and still having permissions to kill it? That is why I was wondering if I have to make this module sit on the framework if not right in the kernel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将获取所有正在运行的进程并杀死具有指定 pid 的进程:
您将需要这些权限才能执行此操作:
This will get all running processes and kill those with the specified pid:
You will need these permissions to do this: