我遇到这种情况,我必须从mainActivity开始一项活动。但我希望这个新活动作为一个新进程启动(使用新进程ID)。是否有可能在Android中实现这一点。 任何帮助表示赞赏。
答案 0 :(得分:19)
在AndroidManifest.xml中为您的Activity添加 android:process =“:ProcessName”
<activity
android:name=".YourActivity"
android:screenOrientation="portrait"
android:process=":YourProcessName">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
在这种情况下,“YourActivity”将在名为“YourProcessName”的其他进程上运行。