Android M: 如何获取当前前台 activity 包名(来自服务)

Android M: How can I get the current foreground activity package name(from a service)

很容易从AndroidL上的ActivityManager服务中得到运行个任务列表,当前活动任务先returned。但它不再适用于 Android M,return 列表仅包含我的应用程序任务。有什么办法解决吗?

我的代码:

List<ActivityManager.RunningAppProcessInfo> runningAppProcessInfos = activityManager.getRunningAppProcesses();
for (int i = 0; i < runningAppProcessInfos.size(); i++) {
    ActivityManager.RunningAppProcessInfo runningAppProcessInfo = runningAppProcessInfos.get(i);
    if (runningAppProcessInfo.importance == ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND) {
        return runningAppProcessInfo.pkgList[0];
    }
}

你可以使用下面的代码获取当前前台activity包名。

   if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
            UsageStatsManager usm = (UsageStatsManager) getSystemService("usagestats");
            long time = System.currentTimeMillis();
            List<UsageStats> appList = usm.queryUsageStats(UsageStatsManager.INTERVAL_DAILY,
                            time - 1000 * 1000, time);
                    if (appList != null && appList.size() > 0) {
                        SortedMap<Long, UsageStats> mySortedMap = new TreeMap<Long, UsageStats>();
                        for (UsageStats usageStats : appList) {
                            mySortedMap.put(usageStats.getLastTimeUsed(),
                                    usageStats);
                        }
                        if (mySortedMap != null && !mySortedMap.isEmpty()) {
                            currentApp = mySortedMap.get(
                                    mySortedMap.lastKey()).getPackageName();
                        }
                    }
        } else {
                ActivityManager am = (ActivityManager) getBaseContext().getSystemService(ACTIVITY_SERVICE);
                currentApp = am.getRunningTasks(1).get(0).topActivity .getPackageName(); 

        }

编辑

将此权限添加到清单文件中。

<uses-permission android:name="android.permission.GET_TASKS" /> 
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" tools:ignore="ProtectedPermissions" />

备注

确保您需要在您的设备中配置自定义设置以获得输出,您可以通过设置 > 安全 > 具有使用权限的应用 > 然后启用您的应用权限来配置它

请在 Android M 中尝试此行。这对我有用

String packageName =  ProcessManager.getRunningForegroundApps(getApplicationContext()).get(0).getPackageName();

查看下方 link 了解其他 android 平台支持。