Do we have option to get activity time information (how long the activity is visible like that) from Activity manager
I would like to get the time information for other apps activity, running in the same device.
The below code is return as the list of recently running apps
ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
List runningProcesses = manager.getRecentTasks(maxNum, flags);
After this i would like to know how much timing each app spends, at what time it start and what time they end. Do we have option to get this informations?