`
endual
  • 浏览: 3513599 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

android 代码 退出程序

 
阅读更多

Android2.2版本
Intent startMain = new Intent(Intent.ACTION_MAIN);
                             startMain.addCategory(Intent.CATEGORY_HOME);
                             startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                             startActivity(startMain);
                             System.exit(0);//退出程序



Android2.2以下版本
1、在配置文件中加入权限:
    <uses-permission android:name="android.permission.RESTART_PACKAGES" />

  2、ActivityManager am = (ActivityManager)getSystemService (Context.ACTIVITY_SERVICE); 
    am.restartPackage(getPackageName());
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics