tags:

views:

55

answers:

2

Hello everyone,

I am working on an app which needs the information of the apps running at the system up to now, I am wondering is there a api/method to retrieve that kind of information?

Thanx in advance.

+3  A: 

You can get information about running processes using the ActivityManager class.

David Underhill
+1  A: 

Great, it works. Thanks a lot. ActivityManager.getRunningAppProcesses();

Jimmy