PhoneApp如何/何时在android中实例化

时间:2011-12-13 14:21:34

标签: android

我在一些地方读过,PhoneApp(com.android.phone.PhoneApp.java)是一个“持续进程”,它“在启动序列的早期启动”。任何人都可以确切地解释这是如何以及何时发生的感谢。

1 个答案:

答案 0 :(得分:0)

回答我自己的问题...... AndroidManifest.xml文件中的以下条目指示ActivityManager启动指定的活动。

<!--  Broadcast Receiver that will process BOOT Complete and launch OTA 
  --> 
- <receiver android:name="OtaStartupReceiver" android:exported="false">
- <intent-filter android:priority="100">
  <action android:name="android.intent.action.BOOT_COMPLETED" /> 
  </intent-filter>
  </receiver>