我有一个应用程序,它接收推送消息并在sharedpreference中存储时间戳。当应用程序退出时,我会得到一个npe,原因如下:
SharedPreferences pref = MainActivity.mainActivity.getSharedPreferences("LAST_SYNC", Context.MODE_PRIVATE);
当应用程序在前端运行,甚至在多任务中运行时,它工作得很好。我很感激你给我一些建议,告诉我在应用程序不运行时如何处理进程。谢谢
代码:
// Store Push received time.
Log.d("eLOQ", "Updating last time synced");
DateFormat lastSyncFormat = new SimpleDateFormat("dd-MM-yyyy HH:mm");
SharedPreferences pref = MainActivity.mainActivity.getSharedPreferences("LAST_SYNC", Context.MODE_PRIVATE);
SharedPreferences.Editor ed = pref.edit();
ed.putString("LAST_SYNC_TIMESTAMP", lastSyncFormat.format(new Date()));
ed.apply();