查看Android中的活动堆栈[关闭]


71

是否可以在Android中查看活动堆栈以进行调试?


Answers:


128

要显示活动堆栈,请运行以下命令:

adb shell dumpsys activity activities

5
如果这样做,adb shell dumpsys activity activities您将获得较少的信息,其中包括正在运行的任务,活动和最近的任务。
凯文·麦克马洪

48
基于此,此管道命令非常方便(来自另一个SO线程)adb shell dumpsys activity | grep -i run
loeschg 2012年

2
有没有办法观看它而不是快照?事情发生得太快了……
Nathan H

6
@Nathan H-假设您使用的是Linux,则可以使用watch命令:watch -n 1 "adb shell dumpsys activity | grep -i com.yourapp"
Bungle先生

1
我在哪里运行此命令?
维卡斯·潘迪
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.