Skip to content

Instantly share code, notes, and snippets.

@mattermon
Created March 26, 2018 08:30
Show Gist options
  • Save mattermon/adbf2620658f1107e9b0bffc4487cbbf to your computer and use it in GitHub Desktop.
Save mattermon/adbf2620658f1107e9b0bffc4487cbbf to your computer and use it in GitHub Desktop.
public static String getTopAppName(){
ActivityManager activityManager=(ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
String topPackage=activityManager.getRunningTasks(1).get(0).topActivity.getPackageName();
return topPackage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment