Android: how to deploy a new process

I want to run two processes in the same DalvikVM. This means that I want to launch the first application, and then this application launches the second application. And I want these two applications to be running in the same DalvikVM. I think this is possible if the first application starts the process for the second application. But I do not know how to do this. thank

+2
source share
2 answers

I want to run two processes in the same DalvikVM.

By definition, this is not possible.

This means that I want to launch the first application, and then this application launches the second application. And I want these two applications to be running in the same DalvikVM.

By definition, this is not possible.

, , .

.

+3

, , ( , ). Android , .

, , Android ( , ).

" " , . , , , , FLAG_ACTIVITY_NEW_TASK Intent.

+2

All Articles