我有一个Android应用程序,它扩展了Application
类,并且有许多应用程序组件(服务,活动和广播接收器)在三个不同的过程中运行。
每个进程一旦启动就会实例化Application
类。所以我一直在寻找如何在Application
类代码中查看,如果该实例属于主应用程序进程,但我无法找到它。
我的清单看起来像这样:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name=".MyApplication"
android:theme="@style/AppTheme" >
<activity
android:name="...">
...
</activity>
<activity
android:name="...">
...
</activity>
<service android:name="..." >
</service>
<service android:name="..."
android:process=":SecondProcess" >
</service>
<service android:name="..."
android:process=":ThirdProcess" >
</service>
接下来是我的Application
类实现:
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
if (is this instance being ran on the main process?) {
// Do something
}
}
}
有谁知道如何检查实例是否在主进程上运行?
答案 0 :(得分:0)
寻找同一问题的答案。
到目前为止,我发现使用可以从进程ID中找到当前正在运行的进程,并在onCreate中进行if检查。
public void onCreate(){
...
String processName = getProcessName();
switch(processName){
case process1:
// do something
break;
case process2:
// do something
break;
....
}