使用DDMS,我看到我的Android中有3个进程处于活动状态:Viber,logitech和声以及带有我的包名称的进程.
问题是我从未创造任何过程.
为什么Android代表我开了一个流程?出于什么目的?
另外,为什么我不能看到所有其他应用程序的进程,例如gmail,地图等,即使它们位于前台?
一些想法:我确实使用FileObserver来监听文件夹更改.也许这就是事情?也许这与在开发环境中运行应用程序有关?
解决方法:
Why have Android opened a process on my behalf? For what purpose?
因为你运行了你的应用程序
Also, why can’t I see all the other apps’ processes, like gmail, maps, etc. even when they are found in the foreground?
因为它们不是在调试模式下编译的.在生产设备上,只有调试版本(或清单中android:debuggable设置为true的应用程序)才会出现在DDMS中.