android 如何知道后台有多少个应用程序在运行?
我可以在后台运行应用程序,但我想知道有多少应用程序在后台运行。 就像在某些手机中一样,按下中心按钮时会显示当前正在运行的应用程序的列表。
这在安卓上可行吗? 如果可能的话,请提供一些代码片段和步骤来实现这一目标。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开发工具应用程序(安装在模拟器中)通过获取
ActivityManager
:The Dev Tools application (installed in emulators) shows a list of running processes by obtaining an instance of
ActivityManager
: