Is it possible to launch an application within another application in Android and iOS. Something like this.
Asked
Active
Viewed 54 times
-3
-
I'm not sure about android, but i'm pretty sure this is not possible with iOS. – Milander Aug 21 '18 at 13:13
-
use heritage in interface – jlSta Aug 21 '18 at 14:06
-
There might be a potential way to programmatically enter split-screen mode with the second app that you would desire to launch with your own if that is something that would be helpful for you (but you would have to research that its just a thought). There are built in ways to call certain common apps from without our own, like gallery pickers and media servers to accomplish tasks via a general type of intent. If either of those work for you, then research the approach and see if it will solve your needs. – Jay Snayder Aug 21 '18 at 14:14
1 Answers
0
In Android - No, every app in Android runs in its own "sandbox". Only one thing you can is start another app via intent
if you know the package name of the app like described in this answer. But the app will be started separatelly.

Alexander Tumanin
- 1,638
- 2
- 23
- 37