简体   繁体   中英

How to kill tasks in android?

I use the following snippet to kill tasks , it works perfectly fine but it doesn't kill my own app. How do i make it kill my app as well?

// kill tasks
    List<String> reservedPackages = new ArrayList<String>();
    reservedPackages.add("system");
    reservedPackages.add("com.android.launcher2");
    reservedPackages.add("com.android.inputmethod.latin");
    reservedPackages.add("com.android.phone");
    reservedPackages.add("com.android.wallpaper");
    reservedPackages.add("com.google.process.gapps");
    reservedPackages.add("android.process.acore");
    reservedPackages.add("android.process.media");
    ActivityManager am = (ActivityManager) context
            .getSystemService(Activity.ACTIVITY_SERVICE);
    List<RunningAppProcessInfo> listeProcessus = am
            .getRunningAppProcesses();
    for (RunningAppProcessInfo processus : listeProcessus) {
        String packageName = processus.processName.split(":")[0];
        if (!context.getPackageName().equals(packageName)
                && !reservedPackages.contains(packageName)) {
            am.restartPackage(packageName);
        }
    }

Google has recently removed the GET_TASKS permission and developers can't make changes to running tasks . The only remained way is to have a root access and close the running tasks that is not possible for All Android Users

从api 21(android lolipop)开始,它已被Google删除

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM