Android:activity结束时,删除进程,完全退出

在onDestroy()中调用System.exit()

@Override
public void onDestroy() {
    super.onDestroy();
    System.exit(0);
}