I tried a lot to get the list of recent and running applications(not processes) but couldn't get it.
I went through all the stackoverflow questions regarding this but the only answer i got about the running processes and recent tasks not the application specific like we can see in Samsung Mobile task manager on long press of home button.
I am able to get the Running processes by this code :
ActivityManager actvityManager = (ActivityManager)
this.getSystemService( ACTIVITY_SERVICE );
List<RunningAppProcessInfo> procInfos = actvityManager.getRunningAppProcesses();
for(RunningAppProcessInfo runningProInfo:procInfos){
Log.d("Running Processes", "()()"+runningProInfo.processName);
}
It is giving the package names of all processes but i want only the package names of applications that i have launched(Both Recent and Running).
How can I extract that from Running Application Processes?
For api level < 21
You need this permission:
And this code:
Recent you can get from getRecentTasks which returns RecentTaskInfo.
UPDATE: I don't see a way to get the name of the recent tasks even by using the below solution but this will work for the currently running and frozen tasks: getRunningTasks
Using
getRunningTasks
will return a list ofRunningTaskInfo
that contain the baseComponentName
which you can use to get the package name from by callinggetPackageName()
.ORIGINAL ANSWER:
You should look into getRecentTasks. Its function is described as
This should get you a list of all the apps that have recently run or are running.