bkshukla
bkshukla

Reputation: 179

How to Open specific application using intent in android?

I want to open an .ics file & i want to make sure that particular app should do that using intent

Upvotes: 3

Views: 1665

Answers (1)

Manoj Kumar
Manoj Kumar

Reputation: 1520

For opening another app:

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("package.name.of.destination.app");
                    startActivity(LaunchIntent);

Form there the control goes to that app, so if you wanna give some effects, you have to do it in the target app

Upvotes: 4

Related Questions