android task kill

后端 未结 5 574
我寻月下人不归
我寻月下人不归 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:05

    You can kill the current process on back pressed using the following code:

    public void onBackPressed() {
        super.onBackPressed();
        int pid = android.os.Process.myPid();
        android.os.Process.killProcess(pid);
    

提交回复
热议问题