把下在的代码贴在Activity类里,在需要的地方调用即可:

private void restartApplication() {
        //System.exit(0);
        final Intent intent = getPackageManager().getLaunchIntentForPackage(getPackageName());
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        startActivity(intent);
        android.os.Process.killProcess(android.os.Process.myPid());
    }



注意:本文归作者所有,未经作者允许,不得转载