The first method: This method can only commit suicide, can not kill other processes ~
/****************************************************
* The first way to kill a process *
* *
****************************************************/
int mypid = Android.os.Process.myPid (); Gets the ID of the current process
Android.os.Process.killProcess (MYPID);
The second method: can only kill others, can not kill themselves, more elegant a little ha ~
/****************************************************
* The second method of killing the process *
* *
****************************************************/
Activitymanager am = (activitymanager) getsystemservice (Activity_service);
Am.killbackgroundprocesses (Getpackagename ()); App's package name
Need to add permission to get package name: <uses-permission android:name= "Android.permission.RESTART_PACKAGES"/>
Third method: Directly terminate the Java virtual machine, causing the application to die, more violent ha ~
/****************************************************
* Third method of killing process *
* *
****************************************************/
System.exit (0);
Ways to kill processes in Android