android 如何知道后台有多少个应用程序在运行?

发布于 2024-07-26 04:58:32 字数 127 浏览 4 评论 0原文

我可以在后台运行应用程序,但我想知道有多少应用程序在后台运行。 就像在某些手机中一样,按下中心按钮时会显示当前正在运行的应用程序的列表。

这在安卓上可行吗? 如果可能的话,请提供一些代码片段和步骤来实现这一目标。

I can run an application in background but I want to know how many applications are running in the background. Like in some mobile while pressing the center button a list of currently running applications are displayed.

Is this is possible in android? If possible then give some code snippets and steps to achieve this.

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

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

发布评论

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

评论(1

没有你我更好 2024-08-02 04:58:32

开发工具应用程序(安装在模拟器中)通过获取ActivityManager

ActivityManager am = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningAppProcessInfo> l = am.getRunningAppProcesses();

The Dev Tools application (installed in emulators) shows a list of running processes by obtaining an instance of ActivityManager:

ActivityManager am = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningAppProcessInfo> l = am.getRunningAppProcesses();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文