大家都知道 android 系统的 Zygote 进程是所有的 android 进程的父进程,包括 SystemServer 和各种应用进程都是通过 Zygote 进程 fork 出来的。Zygote(孵化)进程相当于是 android 系统的根进程,后面所有的进程都是通过这个进程 fork 出来的,而 Zygote 进程则是通过 linux 系统的 init 进程启动的,也就是说,android 系统中各种进程的启动方式: init 进程 –> Zygote 进程 –> SystemServer 进程 –> 各种应用进程