我只想在应用程序第一次启动时在 android 中运行一次 AsyncTask。
我试图将共享首选项放在 onCreate 中,但它没有用。还有其他想法吗?
SharedPreferences prefscrt = PreferenceManager.getDefaultSharedPreferences(this);
if(!prefscrt.getBoolean("firstTime", false)) {
Log.d("DownloadManager", "Installing First Time");
new Task().execute(); //THIS WON'T WORK
SharedPreferences.Editor editor = prefscrt.edit();
editor.putBoolean("firstTime", true);
editor.commit();
}
在此先感谢马兹