Is there an easy way to view a list of recent activities? The one I'm looking for doesn't seem to be showing up in the main recent apps view, and adb logcat
is so noisy I'm having a hard time finding anything.
Asked
Active
Viewed 5,573 times
2

A B
- 121
- 1
- 4
-
What kind of recent activities are you looking for? – Chahk Jul 30 '14 at 14:03
-
Really just any activity that is appearing on screen. – A B Jul 30 '14 at 20:20
1 Answers
2
For Lollipop do adb shell dumpsys activity recents
. For some earlier Android version, run adb shell dumpsys activity activities
.
Alternatively, you may run adb shell dumpsys activity | grep -i run
as noted by loeschg here.
You would get a list of recent apps' package name, component (activity) name, flags among other things.
In Lollipop, if you've root access, you can browse to /data/system/recent_tasks/
. You'll find some XML files with numeral names, such as 317.xml
. Each of them consists of the same aforesaid details, but each XML file is created for an individual app.
You can also get some info from adb shell dumpsys usagestats
.