WindowManager将View也添加给了remote进程。

至于为什么使用了WindwManager和remote进程此处不讲了,只记录问题。

本应用使用了WindwManager和remote进程,经过log追踪发现,WindwManager把View加给当前进程的也加给了remote进程。

windowManager的获取:

windowManager = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
            if (windowManager == null) {
                windowManager = (WindowManager) Class.forName("android.view.WindowManagerImpl")
                        .getMethod("getDefault", new Class[0]).invoke(null, new Object[0]);
            }

这点有些出乎意料,并且带来了不好的结果。

直接的解决方案,在添加之前,kill掉已不再使用的remote进程。

通过日志发现,私有进程启动时也调用了Application的onCre方法。那好吧,通过判定当前进程的进程名,如果是私有进程什么都不执行就OK了。

私有进程是父进程名+“:xxxx",其中xxxx是自己在manifest指定的。(forck的进程名不一样)。

 

 

你可能感兴趣的:(WindowManager将View也添加给了remote进程。)