Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch another application INSIDE an application in Android

Tags:

java

android

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);
like image 293
androidBoomer Avatar asked Apr 24 '26 00:04

androidBoomer


1 Answers

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.

like image 125
Luis Avatar answered Apr 26 '26 14:04

Luis