Android2.2中关闭所有界面,彻底退出的方法

    技术2022-05-19  18

             Intent startMain = new Intent(Intent.ACTION_MAIN);          startMain.addCategory(Intent.CATEGORY_HOME);          startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);          startActivity(startMain);          System.exit(0);


    最新回复(0)