Heim  >  Fragen und Antworten  >  Hauptteil

android - 安卓应用里组件可以作为单独进程来运行?

在安卓官方网站看到这段话:

However, you can arrange for different components in your application to run in separate processes, and you can create additional threads for any process

问:也就是说应用程序里每个组件都可以作为独立的进程来运行?

黄舟黄舟2766 Tage vor658

Antworte allen(1)Ich werde antworten

  • 巴扎黑

    巴扎黑2017-04-17 12:03:23

    在AndroidManifest.xml里声明组件的时候,加上process标签并提供进程名,这样就可以把这个组件放在另外的进程启动了

    // 把activity放在processName1进程
    <activity android:name="packageName.xxxActivity" android:process=":processName1" />
    
    // 把receiver放在processName2进程
    <receiver android:name="packageName.xxxReceiver" android:process=":processName2" />
    

    Antwort
    0
  • StornierenAntwort