Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to view the activity stack in Android for debugging purposes?

share|improve this question
this is a duplicate of stackoverflow.com/questions/2442713/… – andr Dec 7 '12 at 6:16

closed as not a real question by Bill the Lizard Dec 9 '12 at 14:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 26 down vote accepted

From the command line, you can use : adb shell dumpsys activity

It prints a lot of stuff, including the activity stack.

share|improve this answer
1  
and if you do adb shell dumpsys activity activities you'll get a smaller amount of info which includes the running tasks, activities and recent tasks. – Kevin McMahon Nov 16 '12 at 1:39
2  
Building off this, this piped command is quite handy (from another SO thread) adb shell dumpsys activity | grep -i run – loeschg Dec 3 '12 at 21:03
Great it is work – Mohammed Subhi Sheikh Quroush Feb 19 at 18:35

Not the answer you're looking for? Browse other questions tagged or ask your own question.