android task kill

后端 未结 5 563
我寻月下人不归
我寻月下人不归 2020-12-11 03:48

I want to kill all tasks that run in android like task killer... What I have done until now is:

ActivityManager manager =  (ActivityManager) this.getSystemSe         


        
5条回答
  •  有刺的猬
    2020-12-11 04:15

    You can try this to kill your task or app:

    ActivityManager am = (ActivityManager) ctx
                    .getSystemService(ctx.ACTIVITY_SERVICE);
    am.killBackgroundProcesses(packageName);
    

    this works for 2.2 and up.

提交回复
热议问题