我想在我的应用程序中清除数据并重新启动应用程序。为此,我使用了下面的代码。但是,它似乎不起作用。请帮帮我!
deleteDatabase(Universal.database_name);
Intent i = getBaseContext().getPackageManager().getLaunchIntentForPackage( getBaseContext().getPackageName() );
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK );
startActivity(i);
编辑:我看不到任何效果,应用程序只是重新启动,数据绝对保留!