Possible Duplicate:
How to get the list of running applications?
How to get a list of active applications in Android? Thanks for answers.
Possible Duplicate:
How to get the list of running applications?
How to get a list of active applications in Android? Thanks for answers.
ActivityManager manager = (ActivityManager)this.getSystemService(ACTIVITY_SERVICE);
List<RunningAppProcessInfo> processes = manager.getRunningAppProcesses();
Then you have a collection of RunningAppProcessInfos, you probably want to be looking at this