彻底退出一个Android程序
在看开源中国Android客户端的代码中,发现彻底退出一个Android程序的代码如下:
ActivityManager activityMgr= (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); activityMgr.restartPackage(context.getPackageName()); System.exit(0); ActivityManager activityMgr= (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); activityMgr.restartPackage(context.getPackageName()); System.exit(0);
这个确实比单独的System.exit(0)退出的彻底
补充:移动开发 , Android ,