当然也可以主动结束本Activity:
正常方式(进程未必会结束)
finish();
传统方式(真正结束进程):
System.exit(0);
自杀方式(真正结束进程):
android.os.Process.killProcess(
android.os.Process.myPid());