Hesham Saeed
Hesham Saeed

Reputation: 5378

Which App is on the foreground?

Can I know somehow which App is on the foreground at the moment if I'm using Background Service or Broadcast Receiver maybe by having its package name? Thanks in advance.

Upvotes: 0

Views: 85

Answers (1)

DroidBender
DroidBender

Reputation: 7892

Use the ActivityManager.

ActivityManager mManager = (ActivityManager)getSystemService(UpdateService.ACTIVITY_SERVICE);
List<ActivityManager.RunningTaskInfo> myTasks = activityManager.getRunningTasks(1);

ForegroundActivity => myTasks.get(0).topActivity.getPackageName();

Upvotes: 1

Related Questions