Parent - child application model
Iam building a system with includes couple of applications, I would like to know if there is a way to design a "main" application which will include inside several applications, so in this case开发者_运维知识库 i could also share same proccess
thanks,
ray.
There are two ways to do it.
1) Application with a couple of activities. In android an Activity is basically a screen.
2) Create different applications and then from the main one launch an intent. Here you have a tutorial of how to do it.
Sounds like multi-threading to me.
精彩评论