我想查看 android 中的所有 运行 进程

I want to see all the running processes in android

我想在文本视图中显示 android 设备上的所有当前 运行 进程 运行。有人可以帮忙吗?

您可以使用 ActivityManager 获取 运行 个任务的列表:

ActivityManager actM = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
List<ActivityManager.RunningTaskInfo> listm = actM.getRunningTasks(100);

以下是您可以对返回的列表执行的所有操作的文档:

http://developer.android.com/reference/android/app/ActivityManager.RunningTaskInfo.html