代码之家  ›  专栏  ›  技术社区  ›  astric mobiles

应用程序关闭/未运行时使用的正确上下文是什么。-

  •  0
  • astric mobiles  · 技术社区  · 6 年前

    我有一个应用程序,它接收推送消息并在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();
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   Shailesh Mishra    6 年前

    处理运行块中的代码段:

    Handler h = new Handler(Looper.getMainLooper());
            h.post(new Runnable() {
                public void run(){
                   // enter code here
                   // do not write your code in main thread 
                   // take getApplicationContext
                 }
    });