1> Activity类的finish方法,根据进程和窗口的关系,当进程不再含有可见窗口后,系统会自主回收它。
2> java.lang.System.exit(0);
http://developer.android.com/reference/java/lang/System.html
Causes the virtual machine to stop running and the program to exit.
促使java虚拟机停止运行并让程序退出。(不安全)
3> android.os.Process.killProcess(android.os.Process.myPid());
杀进程(不安全)