本文介绍了获取正在运行的进程列表和杀死他们的后台服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我建立了内存优化的Android应用程序。我可以成功地得到使用此回答正在运行的进程(和它们的PID)的列表。不过,我不明白的方式通过PID杀死他们或他们的后台服务。
I am building an Android app for RAM optimization. I can successfully get the list of running processes (and their PIDs) using this answer. However, I don't see a way to kill them or their background services by PID.
推荐答案
这竟然是一些很基本的:
It turned out to be something very basic:
ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
for (RunningAppProcessInfo pid : am.getRunningAppProcesses()) {
am.killBackgroundProcesses(pid.processName);
}
这篇关于获取正在运行的进程列表和杀死他们的后台服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!