Android Application 两个进程只初始化一个
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Application 两个进程只初始化一个相关的知识,希望对你有一定的参考价值。
override fun onCreate()
super.onCreate()
val processName = getCurrentProcessName(this)
if (processName == packageName)
//此处写只初始化一次的代码
initialized()
fun getCurrentProcessName(context: Context): String?
val pid = Process.myPid()
for (appProcess in (context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager).runningAppProcesses)
if (appProcess.pid == pid)
return appProcess.processName
return null
以上是关于Android Application 两个进程只初始化一个的主要内容,如果未能解决你的问题,请参考以下文章