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
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);