若是你的manifest文件中配置的 service (或activity)添加了 process = :xxx 標籤, 那麼這個service 或activity 會運行的另外的進程中, 這樣或致使 application 對象初始化屢次。java
下面的com.zzw.october、com.zzw.october:push、com.zzw.october:remote 是三個獨立的進程。android
若是在application 的oncreate 方法中作了一些不能重複的初始化,那麼須要對 application name 作過濾:app
//umeng, baidu 等service 運行在單獨的進程中,致使重複初始化公共組件, 因此過濾掉 String currentProcName = ""; int pid = android.os.Process.myPid(); ActivityManager manager = (ActivityManager) this.getSystemService(Context.ACTIVITY_SERVICE); for (ActivityManager.RunningAppProcessInfo processInfo : manager.getRunningAppProcesses()) { if (processInfo.pid == pid) { currentProcName = processInfo.processName; Log.w(TAG, "process name:" + currentProcName); if(currentProcName != null && !currentProcName.equals("com.zzw.october")){ Log.w(TAG, "not main app, process name:" + currentProcName); return; } } } //initializing.. ... ...