Is it possible to launch another application while inside an application? Is there any other solution to launch another application?
I used this code to call another application from my launching application
Intent LaunchIntent = new Intent(Intent.ACTION_MAIN);
LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.exaple.sampleapp");
startActivity(LaunchIntent);
What do you mean by inside ? Like your app acting as a container ?
When you launch another application the way you did, it is like you opened that app by tapping into its icon on the application drawer. The application will run on its own process and not inside your app.
By doing this, your app will be put at background as the opened app goes to the foreground.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With