Reputation: 5378
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
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